-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.43 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
from setuptools import setup
from os.path import join, dirname
with open(join(dirname(__file__), 'requirements.txt'), 'r') as f:
install_requires = f.read().split("\n")
with open("README.md", "r") as f:
long_description = f.read()
exec(compile(open('flask_filer/__about__.py').read(), 'flask_filer/__about__.py', 'exec'))
setup(
name='flask-filer',
version=__version__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/BbsonLin/flask-filer',
license='MIT',
author=__author__,
author_email=__email__,
packages=['flask_filer'],
install_requires=install_requires,
zip_safe=False,
keywords='flask filer filesystem',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Filesystems',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
],
)