forked from Aleph-Alpha/aleph-alpha-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 801 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
def version():
exec(open('aleph_alpha_client/version.py').read())
return locals()["__version__"]
setup(
name="aleph-alpha-client",
url="https://github.com/Aleph-Alpha/aleph-alpha-client",
author="Aleph Alpha",
author_email="support@aleph-alpha.com",
packages=["aleph_alpha_client"],
install_requires=["requests"],
tests_require=["pytest", "pytest-cov", "python-dotenv"],
extras_require={
"test": ["pytest", "pytest-cov", "python-dotenv"],
},
license="MIT",
description="python client to interact with Aleph Alpha api endpoints",
long_description=readme(),
long_description_content_type="text/markdown",
version=version(),
)