-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 911 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
32
33
34
#!/bin/python3
from setuptools import setup
from setuptools import find_packages
NAME = "devtools"
PACKAGES = [NAME] + ["%s.%s" % (NAME, i) for i in find_packages(NAME)]
LONG_DESC = '''Some useful helper-funcs for devpers.
Sub-package is the extension of corresponding package with the same name.
'''
setup(
name='AIJIdevtools',
version='1.4.5',
author='AIJI',
author_email='thecrazyaiji@gmail.com',
description='Some useful helper-funcs for devpers',
long_description=LONG_DESC,
packages=PACKAGES,
install_requires=[
'sh',
'sqlparse',
'termcolor',
'pyJWT',
'requests',
],
url='https://github.com/AIJIJI/devtools',
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha"
]
)