-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.65 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.65 KB
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
48
#!/usr/bin/env python
import os
from io import open
# Workaround for hardlink problem in Python 2.7+
# See also: http://bugs.python.org/issue8876
if os.environ.get('USER', '') == 'vagrant':
del os.link
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(name='omise',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.15.1',
description='Omise Python client',
author='Omise',
author_email='support@omise.co',
url='https://www.omise.co/',
packages=['omise', 'omise.test'],
install_requires=['requests >= 2.12.1'],
test_suite='omise.test',
extras_require={
"tests": ['nose >= 1.3.4', 'mock >= 1.0.1', 'coverage >= 7.0.0'],
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"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 :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
])