-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (43 loc) · 1.3 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
50
51
52
53
54
from setuptools import find_packages, setup
# read in __version__
with open('flourish/version.py') as version_file:
exec(version_file.read())
setup(
name='flourish',
version=__version__, # noqa: F821
description='Static website generator',
url='https://github.com/norm/flourish',
license='MIT',
author='Mark Norman Francis',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
entry_points={
'console_scripts': ['flourish=flourish.command_line:main'],
},
package_data={
'': ['*.html'],
},
install_requires=[
'boto3',
'Flask',
'Jinja2>=2.9',
'markdown2',
'feedgen',
'toml',
'libsass',
'sectile>=0.3.5',
'jsonpickle',
'importlib_resources; python_version <= "3.9"',
],
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Code Generators',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)