-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.5 KB
/
setup.py
File metadata and controls
46 lines (44 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
from pathlib import Path
PROJECT_DIR = Path(__file__).parent
readme_text = (PROJECT_DIR / "README.md").read_text()
setup(
name="pytechnote",
version="0.2.0.dev1",
author="Milad Nia",
author_email="miladniaa@gmail.com",
url="https://github.com/miladnia/technote",
license="MIT",
long_description=readme_text,
long_description_content_type="text/markdown",
packages=find_packages(include=["technote", "technote.*"]),
include_package_data=True, # include non-Python files
python_requires=">=3.10",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Scheduling",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
],
entry_points={
'console_scripts': [
'technote=technote.cli:main',
],
},
install_requires=[
"Flask==3.0.3",
"gunicorn==23.0.0",
"pypandoc-binary==1.14",
],
)