forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.17 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.17 KB
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
import setuptools
# Get the version from single source
version = {}
with open("tracker_client/__version__.py") as version_file:
exec(version_file.read(), version)
requirements = [
"aiohttp>=3.7.1,<3.8.0",
"gql>=3.0.0a5",
"python-slugify>=4.0.1",
]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="tracker_client",
version=version["__version__"],
author="Thomas Nickerson",
author_email="contact@cyber.gc.ca",
description="A Python client for the GoC Tracker API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/canada-ca/tracker/tree/master/clients/python",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
keywords="api graphql gql tracker canada goc client",
packages=setuptools.find_packages(include=["tracker_client"]),
python_requires=">=3.6",
install_requires=requirements,
)