-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (45 loc) · 1.5 KB
/
setup.py
File metadata and controls
46 lines (45 loc) · 1.5 KB
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
from setuptools import setup, find_packages
setup(
name="NoteByNote",
version="1.0.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
"Flask==2.0.3",
"SQLAlchemy==1.4.27",
"Flask-Login==0.5.0",
"Flask-Migrate==3.1.0",
"python-dotenv==0.19.2",
"Werkzeug>=2.0,<2.1.0",
"Flask-Mail==0.9.1",
"itsdangerous>=2.0.1",
"reportlab",
"Flask-WTF==1.0.1",
],
python_requires=">=3.8",
author="NoteByNote Team",
author_email="contact@notebynote.example",
description="A sophisticated fragrance formulation and analysis application",
keywords="fragrance, cologne, perfume, formulation, analytics",
url="https://github.com/yourusername/notebynote",
project_urls={
"Documentation": "https://notebynote.example/docs",
"Bug Reports": "https://github.com/yourusername/notebynote/issues",
"Source Code": "https://github.com/yourusername/notebynote",
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Chemistry",
],
entry_points={
"console_scripts": [
"notebynote=run:main",
],
},
)