-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 981 Bytes
/
setup.py
File metadata and controls
40 lines (36 loc) · 981 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
30
31
32
33
34
35
36
37
38
39
40
# pylint: disable=C0111
from setuptools import setup, find_packages
with open('README.rst', encoding='utf-8') as f:
README = f.read()
with open('pychatl/version.py') as f:
VERSION = f.readlines()[1].strip()[15:-1]
setup(
name='pychatl',
version=VERSION,
description='Tiny DSL to generate training dataset for NLU engines',
long_description=README,
url='https://github.com/atlassistant/chatl',
author='Julien LEICHER',
license='GPL-3.0',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
install_requires=[
'Arpeggio==1.9.0',
],
extras_require={
'test': [
'nose==1.3.7',
'sure==1.4.11',
],
},
entry_points={
'console_scripts': [
'pychatl = pychatl.cli:main',
]
},
)