-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="osidb_bindings",
version="4.6.3",
author="Jakub Frejlach, Red Hat Product Security",
author_email="[email protected]",
description="Python bindings for accessing OSIDB API",
url="https://github.com/RedHatProductSecurity/osidb-bindings",
project_urls={
"Changelog": "https://github.com/RedHatProductSecurity/osidb-bindings/blob/master/CHANGELOG.md",
"Documentation": "https://github.com/RedHatProductSecurity/osidb-bindings/blob/master/TUTORIAL.md",
"Source": "https://github.com/RedHatProductSecurity/osidb-bindings",
},
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
],
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"aiohttp",
"attrs",
"requests",
"requests-gssapi",
"python-dateutil",
],
)