-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 813 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 813 Bytes
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
from setuptools import setup
from setuptools import find_packages
setup(
name="deeputil",
version="0.2.10",
description="Commonly re-used logic kept in one library",
keywords="deeputil",
author="Deep Compute, LLC",
author_email="contact@deepcompute.com",
url="https://github.com/deep-compute/deeputil",
license="MIT",
dependency_links=["https://github.com/deep-compute/deeputil"],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 2.7",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
install_requires=["repoze.lru", "six"],
packages=find_packages("."),
include_package_data=True,
test_suite="test.suite_maker",
)