forked from akaszynski/keepa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (37 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
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
"""
Setup.py for keepaAPI
Upload to PyPi using
python setup.py sdist upload -r pypi
"""
from setuptools import setup
import numpy
setup(
name='keepaAPI',
packages = ['keepaAPI'],
# Version
version='0.12',
description='Interfaces with keepa.com',
long_description=open('README.rst').read(),
# Author details
author='Alex Kaszynski',
author_email='[email protected]',
license='Apache Software License',
classifiers=[
'Development Status :: 4 - Beta',
# Target audience
'Intended Audience :: End Users/Desktop',
'Topic :: Database :: Front-Ends',
# MIT License
'License :: OSI Approved :: Apache Software License',
# Tested only on Python 2.7 (untested with 3)
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
# Website
url = 'https://github.com/akaszynski/keepaAPI',
keywords='keepa',
include_dirs=[numpy.get_include()],
# Might work with earlier versions (untested)
install_requires=['numpy>=1.9.3', 'requests>=2.2']
)