-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (44 loc) · 1.27 KB
/
setup.py
File metadata and controls
51 lines (44 loc) · 1.27 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding:utf-8 -*-
import io
from setuptools import setup, find_packages
with io.open('tools_readme.md', 'rt', encoding='utf8') as f:
readme = f.read()
version = '1.0.0'
requires = [
'SQLAlchemy==1.3.3',
'Flask==1.1.1',
'Flask-SQLAlchemy==2.3.2',
'MySQL-python==1.2.3',
'requests==2.21.0',
'redis==3.2.1',
'celery==5.2.2',
'xlrd==1.2.0',
'xlwt==1.3.0',
]
setup(
name='tools',
version=version,
description='tools models+func',
long_description=readme,
packages=find_packages(),
package_data={
'': ['*.md'],
},
platforms='any',
include_package_data=True,
zip_safe=False,
install_requires=requires,
classifiers=[
'Development Status :: 1 - Beta',
'Framework :: python-curd',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)