-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.04 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
import pathlib
import setuptools
setuptools.setup(
name = "GraphModels",
version= '0.1.0',
description= 'GraphModels: A package containing algorithms for pathfinding, scheduling, and maximum flow problems',
long_description= pathlib.Path("README.md").read_text(),
long_description_content_type= 'text/markdown',
author = 'Alikacem Faycal',
author_email= '[email protected]',
project_urls = {
'Source' : 'https://github.com/Faycal214/Graph-models'
},
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
],
python_requires = '>= 3.10, <3.13',
install_requires = ["math", "random", "matplotlib", "networkx"],
packages= setuptools.find_packages(),
include_package_data= True,
extras_requires = {
"dev" : ["pytest >= 7.0", "twine >= 4.0.2"]
},
)