-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 loc) · 1.03 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 setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
VERSION = '0.0.6'
DESCRIPTION = 'Using graph theory algorithms and simulations, to optimaize paths and travel times between nodes on a geospatial map'
LONG_DESCRIPTION = 'Using graph theory algorithms and simulations, to optimaize paths and travel times between nodes on a geospatial map'
setup(
name="trekpy",
version=VERSION,
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
author="Teddy Oweh",
author_email="[email protected]",
license='MIT',
url="https://github.com/teddyoweh/Trek",
packages=find_packages(),
install_requires=[
'matplotlib',
'networkx'
],
keywords='Trek',
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
]
)