-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.04 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.04 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
from setuptools import setup, find_packages
version = {}
with open('./quadriga/version.py') as fp:
exec(fp.read(), version)
setup(
name='quadriga',
description='Python Wrapper for QuadrigaCX API v2',
version=version['VERSION'],
author='Joohwan Oh',
author_email='joohwan.oh@outlook.com',
url='https://github.com/joowani/quadriga',
packages=find_packages(),
include_package_data=True,
install_requires=['requests'],
tests_require=['pytest', 'mock'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Documentation :: Sphinx'
]
)