This repository was archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (43 loc) · 1.37 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
import setuptools
with open('README.md', 'r') as f:
readme = f.read()
setuptools.setup(
name='flask-deploy',
version='0.4.2',
description='A quick deploy script for productive flask app',
url='https://github.com/Mon-ius/flask-deploy',
author='Mon-ius',
author_email='m1105930979@gmail.com',
packages=setuptools.find_packages(),
package_data={
'flaskdeploy': ['data/*']
},
install_requires=[
'click',
],
license='MIT',
long_description=readme,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'flask-deploy =flaskdeploy.scripts.core:cli',
'fd = flaskdeploy.scripts.core:cli',
],
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
platforms='linux',
)