forked from arthurtyukayev/python-safer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
21 lines (19 loc) · 813 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="python-safer",
version="1.5",
packages=["safer"],
description="A web scraping API written in Python to fetch data from the Department of Transportation's Safety and "
"Fitness Electronic Records System http://www.safersys.org/",
url="https://github.com/arthurtyukayev/python-safer",
keywords="SAFER safer department transportation fitness electronic records system",
author="Arthur Tyukayev",
author_email="[email protected]",
install_requires=["lxml", "requests", "python-dateutil"],
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
)