forked from akaszynski/keepa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.25 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
"""Setup for keepaapi."""
from io import open as io_open
import os
from setuptools import setup
package_name = "keepa"
# Get version from ./_version.py
__version__ = None
version_file = os.path.join(os.path.dirname(__file__), package_name, "_version.py")
with io_open(version_file, mode="r") as fd:
exec(fd.read())
filepath = os.path.dirname(__file__)
readme_file = os.path.join(filepath, "README.rst")
setup(
name=package_name,
packages=[package_name],
version=__version__,
description="Interfaces with keepa.com",
long_description=open(readme_file).read(),
author="Alex Kaszynski",
author_email="[email protected]",
license="Apache Software License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Database :: Front-Ends",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
url="https://github.com/akaszynski/keepa",
keywords="keepa",
install_requires=["numpy>=1.9.3", "requests>=2.2", "tqdm", "aiohttp", "pandas"],
)