forked from pytorch/text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 670 Bytes
/
setup.py
File metadata and controls
29 lines (23 loc) · 670 Bytes
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
27
28
29
#!/usr/bin/env python
import os
import shutil
import sys
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)