-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 902 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
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
setup(
name='parade-manage',
version='0.0.2.13',
author='Pan Chen',
author_email='chenpan9012@gmail.com',
description='A manage module of parade',
url='https://github.com/cpzt/parade-manage',
install_requires=['parade'],
zip_safe=False,
python_requires='>=3.4',
include_package_data=True,
platforms=['any'],
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX'
]
)