-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
36 lines (33 loc) · 1.13 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
import setuptools
import os
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
version_number = os.environ.get('CHAPA_VERSION', '0.1.2')
setuptools.setup(
name='chapa',
version=version_number,
author='Temkin Mengistu (Chapi)',
author_email='chapimenge3@gmail.com',
description='Python SDK for Chapa API https://developer.chapa.co',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/chapimenge3/chapa',
packages=['chapa'],
package_dir={'chapa': 'chapa'},
project_urls={
'Source': 'https://github.com/chapimenge3/chapa',
'Bug Tracker': 'https://github.com/chapimenge3/chapa/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.6',
install_requires=[
'httpx>=0.27.0',
],
)