-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 977 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
setup(
name="logagg_utils",
version="0.5.2",
description="Commonly re-used logic for loggag kept in one library",
keywords="logagg-utils",
author="Deep Compute, LLC",
author_email="[email protected]",
url="https://github.com/deep-compute/logagg/logagg-utils",
license="MIT",
dependency_links=["https://github.com/deep-compute/logagg/logagg-utils"],
install_requires=["deeputil==0.2.7", "six==1.11.0", "requests", "basescript"],
packages=find_packages("."),
include_package_data=True,
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
test_suite="test.suite_maker",
)