forked from cKurultayKalkan/iyzipay-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (36 loc) · 1.22 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
import os
from setuptools import find_packages, setup
with open('README.md') as f:
README = f.read()
with open('LICENSE') as f:
LICENSE = f.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
install_requires = [
'requests >= 0.8.8',
]
setup(
name='iyzipay',
version='1.0.38',
use_scm_version=True,
setup_requires=['setuptools_scm', 'future'],
description='iyzipay api python client',
long_description=README,
author='iyzico',
author_email='iyzico-ci@iyzico.com',
url='https://github.com/iyzico/iyzipay-python',
license=LICENSE,
packages=find_packages(exclude='tests'),
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)