forked from nickjj/flask-static-digest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.63 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
48
49
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
VERSION = '{{VERSION_PLACEHOLDER}}'
if 'VERSION_PLACEHOLDER' in VERSION:
VERSION = '0.0.0'
setup(
name='flask-cache-manifest',
packages=['flask_cache_manifest'],
version=VERSION,
author='Maxime Dupuis',
author_email='mdupuis@hotmail.ca',
url='',
project_urls={
'Documentation': 'https://maxdup.github.io/flask-cache-manifest/',
'Github': 'https://github.com/maxdup/flask-cache-manifest',
},
description='Flask extension to serve md5 hashed assets via manifest file.',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
platforms='any',
python_requires='>=3.7',
install_requires=[
'Flask>=2.0'
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving :: Compression',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'
]
)