This repository was archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (43 loc) · 1.4 KB
/
setup.py
File metadata and controls
51 lines (43 loc) · 1.4 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
49
50
51
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
README = f.read()
with open(path.join(here, 'atomx', 'version.py')) as f:
exec(f.read()) # defines VERSION and API_VERSION
requires = [
'requests',
]
extra_require = {
'report': ['ipython[notebook]', 'pandas', 'matplotlib'],
'test': ['pytest'],
'docs': ['sphinx'],
}
setup(
name='atomx',
version=VERSION,
description='python interface for the atomx api on https://api.atomx.com',
long_description=README,
packages=find_packages(),
exclude_package_data={'': ['.gitignore']},
zip_safe=True,
author='Spot Media Solutions Sdn. Bhd.',
author_email='daniel@atomx.com',
url='https://github.com/atomx/atomx-api-python',
license='ISC',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='atomx rest api',
setup_requires=['setuptools_git'],
tests_require=['pytest'],
install_requires=requires,
extras_require=extra_require,
)