-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
executable file
·47 lines (41 loc) · 1.43 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
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.44',
use_scm_version=True,
setup_requires=['setuptools_scm', 'future'],
# description='iyzipay api python client',
# long_description=README,
long_description="Test Description",
author='iyzico',
author_email='[email protected]',
url='https://github.com/iyzico/iyzipay-python',
# license=LICENSE,
license="MIT",
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)