-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
41 lines (36 loc) · 1.36 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
import sys
from setuptools import find_packages, setup
# Hack to get the version number from the package without importing the
# __init__.py and all its dependencies.
sys.path.insert(0, "./ravenpackapi/")
__version__ = __import__("version").__version__
sys.path = sys.path[1:]
with open("README.rst") as readme_file:
readme = readme_file.read()
setup(
name="ravenpackapi",
version=__version__,
packages=find_packages(include=["ravenpackapi"]),
package_data={"ravenpackapi": ["ravenpackapi/*"]},
include_package_data=True,
url="https://github.com/RavenPack/python-api",
license="MIT",
long_description=readme,
author="RavenPack",
author_email="[email protected]",
description="RavenPack API - Python client",
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: System :: Software Distribution",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
],
keywords="python analytics api rest news data",
install_requires=["requests[security]", "python-dateutil", "six", "tenacity"],
)