-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 818 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
30
31
32
33
from setuptools import setup
version = '1.0.1'
requires = [
'requests'
]
def readme():
with open('README.md', 'r', encoding='utf-8') as f:
return f.read()
setup(
name='centapp',
version=version,
author='hteppl',
author_email='[email protected]',
description='Python client library for interacting with CentApp API',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/hteppl/centapp-sdk-python',
packages=['centapp'],
install_requires=requires,
classifiers=[
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
keywords=['python', 'api', 'sdk', 'payments', 'centapp'],
python_requires='>=3.7'
)