-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 856 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
"""
Allows you to install the package using setuptools
"""
from setuptools import setup, find_packages
setup(
name="FinalProjectCKaba",
version="1.0",
packages=find_packages(),
install_requires=[
"geopy", # For calculating distances
"networkx", # For making graph nodes and edges
"matplotlib", # For plotting graphs
'pytest', # For running tests
'logging', # For logging operations
],
entry_points={
"console_scripts": [
# Allows the main function of TarjanPlanner to be run by typing
# 'TarjanPlanner' in the console
"TarjanPlanner=tarjan_planner:main",
# Allows the main function of FileOrganizer to be run by typing
# 'FileOrganizer' in the console
"FileOrganizer=file_organizer:main",
]
},
)