-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.13 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
import re
from setuptools import find_namespace_packages, setup
with open('windowbox/__init__.py', 'r') as fh:
version = re.search(r"__version__ = '(.*?)'", fh.read()).group(1)
with open('README.md', 'r') as fh:
readme = fh.read()
setup(
name='windowbox',
version=version,
author='Scott Smitelli',
author_email='scott@smitelli.com',
description="Don't call it a moblog / I've posted for years.",
long_description=readme,
packages=find_namespace_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.6',
install_requires=[
'Flask-Assets==2.1.0',
'Flask-SQLAlchemy==3.0.3',
'Flask==2.3.3',
'MarkupSafe==2.1.2',
'Pillow==10.3.0',
'htmlmin==0.1.12',
'libsass==0.22.0',
'lxml==4.9.2',
'requests==2.32.2'
],
extras_require={
'dev': [
'flake8==6.0.0',
'pytest-cov==4.0.0',
'pytest==7.3.1',
'python-dotenv==1.0.0'
]
},
entry_points={
'console_scripts': [
'windowbox-fetch = windowbox.fetch:main'
]
},
)