-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
37 lines (34 loc) · 1.22 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
from setuptools import find_packages, setup
DESCRIPTION = (
"A Python package for project and team management. Automatic and optimized resource scheduling."
)
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
setup(
name="ProcessScheduler",
version="2.1.0",
description=DESCRIPTION,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/tpaviot/ProcessScheduler",
author="Thomas Paviot",
author_email="[email protected]",
license="GPLv3",
platforms="Platform Independent",
packages=find_packages(),
install_requires=["z3-solver==4.13.3.0", "pydantic>=2"],
classifiers=CLASSIFIERS,
zip_safe=True,
)