-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (25 loc) · 903 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='pychoice',
version='0.1.1',
description='An utility adds code readability to your application and/or API, Code is documentation!',
long_description=long_description,
url='https://github.com/FuGangqiang/pychoice',
author='FuGangqiang',
author_email='[email protected]',
keywords='choice',
license='MIT',
py_modules=['pychoice'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Documentation',
'License :: OSI Approved :: MIT License',
],
)