-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.16 KB
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
from setuptools import setup
version = '0.1.3'
name = 'botify'
install_requires = []
setup(name=name,
version=version,
description='Natural Language based Commands Processing Framework',
install_requires=install_requires,
long_description=open('README.rst', 'rt').read(),
author='Priyam Singh',
author_email='priyamsingh.22296@gmail.com',
packages=['botify'],
url='https://github.com/pri22296/{0}'.format(name),
download_url='https://github.com/pri22296/{0}/tarball/{1}'.format(name, version),
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)