-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (29 loc) · 896 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
import os
import sys
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup
def read_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='antu',
version='0.0.5a',
author='AntNLP',
author_email='[email protected]',
description='Universal data IO and neural network modules in NLP tasks',
long_description = read_file("README.md"),
license='Apache',
packages=find_packages(),
install_requires=[],
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Documentation :: Sphinx',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
url ="https://github.com/AntNLP/antu",
zip_safe=True,
include_package_data=True,
platforms='any',
)