forked from sonos/automatic-data-generation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 737 Bytes
/
setup.py
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
30
31
32
33
34
35
36
#! /usr/bin/env python
# encoding: utf-8
from __future__ import unicode_literals
from setuptools import find_packages, setup
extras_require = {
"test": [
"mock>=2.0.0,<3.0",
"pytest>=4.3.1,<5.0",
]
}
setup(
name="automatic-data-generation",
version="0.1.0",
description="Text generation library",
license=None,
author="Stephane d'Ascoli and Alice Coucke",
packages=find_packages(),
install_requires=[
"torch",
"torchvision",
"torchtext",
"tensorboardX==1.4",
"tb-nightly",
"nltk",
"spacy",
"pandas"
],
extras_require=extras_require,
classifiers=[
"Programming Language :: Python :: 3.6",
],
)