Skip to content
Snippets Groups Projects
Commit 6d205c0a authored by markn92's avatar markn92
Browse files

setup py

parent 48a4eb3b
No related branches found
No related tags found
No related merge requests found
.idea
plots
__pycache__
build
dist
*.egg-info
......@@ -11,7 +11,6 @@ pandas = "*"
networkx = "*"
network2tikz = {editable = true,path = "/home/mark/Projekte/network2tikz"}
requests = "*"
rtree = "*"
[requires]
python_version = "3.7"
setup.py 0 → 100644
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='evroutingtools',
version='0.0.1',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://git.imp.fu-berlin.de/markn92/ba',
author='Mark Niehues',
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=['evrouting'],
python_requires='>=3.4.*, <4',
install_requires=[
'networkx',
'requests'
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment