-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.06 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
38
39
40
from distutils.core import setup
from setuptools import find_packages
REQUIREMENTS = [
"requests==2.*"
]
REQUIREMENTS_DEV = [
"mypy==0.*",
"pytest==6.*",
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="mpyk",
version="0.0.4",
description="Library for retrieving Wrocław public transportation geolocation data",
author="Mateusz Korzeniowski",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/emkor/mpyk",
packages=find_packages(exclude=("test", "test.*")),
install_requires=REQUIREMENTS,
tests_require=REQUIREMENTS_DEV,
extras_require={
"dev": REQUIREMENTS_DEV
},
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Utilities"
],
)