-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 844 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
31
#!/usr/bin/env python
import re
from setuptools import setup, find_namespace_packages
_version_re = re.compile(r"__version__\s+=\s+(.*)")
with open("gtfs_aggregator_checker/__init__.py", "r") as f:
version = _version_re.search(f.read()).group(1).strip("'\"")
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="gtfs_aggregator_checker",
version=version,
packages=find_namespace_packages(),
install_requires=[
"beautifulsoup4",
"python-dotenv",
"PyYAML",
"requests",
"typer",
],
description="Tool for checking if transit urls are on aggregator websites",
long_description=long_description,
long_description_content_type="text/markdown",
author="",
author_email="",
url="https://github.com/cal-itp/gtfs-aggregator-checker",
)