FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
text/setup.py at master · SmartAI/text · GitHub
SmartAI
/
text
Public
forked from
pytorch/text
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
text
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (20 loc) · 635 Bytes
Breadcrumbs
text
/
setup.py
Copy path
File metadata and controls
26 lines (20 loc) · 635 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
from
setuptools
import
setup
,
find_packages
VERSION
=
'0.1.1'
long_description
=
'''torch-text provides text and NLP data utilities
and datasets for torch'''
setup_info
=
dict
(
# Metadata
name
=
'torchtext'
,
version
=
VERSION
,
author
=
'PyTorch core devs and James Bradbury'
,
author_email
=
'jekbradbury@gmail.com'
,
url
=
'https://github.com/pytorch/text'
,
description
=
'text utilities and datasets for torch deep learning'
,
long_description
=
long_description
,
license
=
'BSD'
,
# Package info
packages
=
find_packages
(
exclude
=
(
'test'
,)),
zip_safe
=
True
,
)
setup
(
**
setup_info
)
Back
|
FazBrowse Home
|
New Git URL