-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathsetup.py
37 lines (33 loc) · 1.01 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
#!/usr/bin/env python3
# coding: utf-8
from os.path import dirname, join
from setuptools import find_packages, setup
# Manual:
# https://the-hitchhikers-guide-to-packaging.readthedocs.io/en/latest/quickstart.html
setup(
name="chatette",
version="1.6.3",
description="A dataset generator for Rasa NLU",
author="SimGus",
license="MIT",
url="https://github.com/SimGus/Chatette",
packages=find_packages(),
long_description=open(join(dirname(__file__), "README.md")).read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Text Processing",
"Topic :: Communications",
],
install_requires=[
"enum-compat",
"future",
"six",
]
)