forked from meraki-analytics/datapipelines-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.11 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
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.rst"), encoding="UTF-8") as readme:
long_description = readme.read()
setup(
name="datapipelines",
version="1.0.7",
author="Meraki Analytics Team",
author_email="team@merakianalytics.com",
url="https://github.com/meraki-analytics/datapipelines",
description="Caching abstraction layer for orchestrating multiple cache tiers",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Database :: Front-Ends"
],
license="MIT",
packages=find_packages(),
zip_safe=True,
install_requires=[
"merakicommons", "networkx"
],
extras_require={
"testing": ["pytest", "flake8"]
}
)