-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
executable file
·51 lines (47 loc) · 1.69 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python3
from os.path import join, abspath, dirname
from setuptools import setup
with open(join(dirname(abspath(__file__)), 'requirements.txt')) as f:
requirements = f.readlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='padatious',
version='0.4.8', # Also change in padatious/__init__.py
description='A neural network intent parser',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/MycroftAI/padatious',
author='Matthew Scholefield',
author_email='matthew331199@gmail.com',
license='Apache-2.0',
packages=[
'padatious'
],
install_requires=requirements,
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': [
'padatious=padatious.__main__:main'
]
},
keywords='intent-parser parser text text-processing',
)