-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 875 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
from setuptools import setup, find_packages
__version__ = '0.1.0'
__pkg_name__ = 'mimo'
setup(
name = __pkg_name__,
version = __version__,
description = 'Mimo',
author='Andrew Chisholm',
packages = find_packages(),
license = 'MIT',
url = 'https://github.com/andychisholm/mimo',
entry_points = {},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
install_requires = [
"numpy",
"scipy",
"ujson",
"spacy",
"tqdm",
"pytorch"
],
test_suite = __pkg_name__ + '.test'
)