-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 700 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from uchicagoShuttleTracking import __version__
with open("README.md", 'r') as f:
long_description = f.read()
with open("requirements.txt", "r") as fh:
requires = [line for line in fh.read().splitlines() if line != ""]
setup(
name='UChicago Shuttle Tracking',
version=__version__,
description="Tracking the Performance of UChicago's Shuttle Network",
long_description=long_description,
long_description_content_type='text/markdown',
author='Andrei Thuler',
author_email='info@andreithuler.com',
url="https://github.com/athuler/UChicago-Shuttle-Tracking",
packages=find_packages(),
py_modules=find_packages(),
install_requires=requires,
)