-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 859 Bytes
/
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
from importlib.metadata import entry_points
from setuptools import setup
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
def get_requirements(path: str):
return [l.strip() for l in open(path)]
setup (
name = 'EVRP Project',
version = '0.1',
description = 'Electric Vehicle Routing Problem',
long_description = long_description,
long_description_content_type="text/markdown",
author = 'Vu Quoc Hien',
author_email = '[email protected]',
url = 'https://github.com/NeiH4207/EVRP-Python',
packages=find_packages(),
keywords='',
install_requires=get_requirements("requirements.txt"),
python_requires='>=3.10',
entry_points={
'console_scripts': [
]
},
)