-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (59 loc) · 2.29 KB
/
setup.py
File metadata and controls
62 lines (59 loc) · 2.29 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
# Read the contents of the requirements.txt file
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="ProgressPal", # Replace with your project's name
version="0.0.8", # Version of your project
author="Levi van Es", # Your name
author_email="levi2234@hotmail.com", # Your email address
description="A decentralized iterable, function and log tracker", # Short description
long_description=open("Readme.md").read(), # Long description from README
long_description_content_type="text/markdown", # Content type of long description
url="https://github.com/levi2234/Progresspal", # URL to your project's repository
packages=find_packages(
where="src"
), # Automatically find packages in the src directory
package_dir={"": "src"}, # Source code is under src
package_data={
"ProgressPal": [
"*.txt",
"*.json",
"*.html",
"*.css",
"*.js",
"*.png",
"*.ico",
"*.jpg",
"*.jpeg",
"*.svg",
"*.gif",
"*.py",
"webapp/*", # Include all files in the webapp directory
"webapp/static/*", # Include all files in the static directory
"webapp/static/media/*", # Include all files in the static directory
"webapp/static/js/*", # Include all files in the static directory
"webapp/static/css/*", # Include all files in the static directory
"webapp/templates/*", # Include all files in the templates directory
"webapp/static/settings/*" "",
],
}, # Include all files in the package
python_requires=">=3.9", # Minimum Python version required
install_requires=required,
extras_require={ # Optional dependencies
"dev": [
"pytest-cov", # Coverage for pytest
# Add other development tools here
],
},
classifiers=[ # Classifiers for the project
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"ProgressPal=ProgressPal.cli:CLI",
],
},
)