-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (39 loc) · 1.25 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
from setuptools import setup
def readme():
with open("README.md", "r") as f:
return f.read()
version = {}
with open("flask_babac/_version.py", "r") as fp:
exec(fp.read(), version)
setup(
name="Flask Babac",
version=version["__version__"],
description="A Python3 Flask front-end application to search the Cycle Babac catalogue and return description, price and availability.",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial",
],
keywords="bicycle babac parts repair diy",
url="http://github.com/normcyr/flask_babac",
author="Normand Cyr",
author_email="norm@normandcyr.com",
license="GNU GPLv3",
packages=["flask_babac"],
entry_points={
"console_scripts": ["flask_babac=flask_babac.flask_babac:main"],
},
install_requires=[
"flask",
"recherche_babac2==0.2.9",
"python-dotenv",
"flask-wtf",
"PyYAML",
],
zip_safe=False,
include_package_data=True,
python_requires=">=3.5",
)