-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (46 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
"""Thoth package definition"""
import os
from setuptools import setup
from thothlibrary import __version__
ROOTDIR = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(ROOTDIR, "README.md")) as in_file:
LONG_DESCRIPTION = in_file.read()
setup(
name="thothlibrary",
version=__version__,
description="Python client for Thoth's APIs",
author="Javier Arias, Martin Paul Eve",
author_email="[email protected]",
url="https://github.com/thoth-pub/thoth-client",
packages=[
"thothlibrary",
"thothrest",
"thothdjango",
"thothlibrary.thoth-0_4_2",
"thothrest.thoth-0_4_2",
"thothlibrary.thoth-0_5_0",
"thothlibrary.thoth-0_6_0",
"thothlibrary.thoth-0_8_0",
"thothlibrary.thoth-0_8_4",
"thothlibrary.thoth-0_9_0"
],
include_package_data=True,
install_requires=[
"requests==2.32.3",
"fire==0.6.0",
"munch==3.0.0",
"requests_mock==1.12.1",
"ascii_magic==2.3.0",
"graphqlclient==0.2.4",
],
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="Apache 2.0",
platforms=["any"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
)