forked from deep-compute/deeputil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 833 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
28
29
from setuptools import setup
from setuptools import find_packages
setup(
name="deeputil",
version="0.2.7",
description="Commonly re-used logic kept in one library",
keywords="deeputil",
author="Deep Compute, LLC",
author_email="[email protected]",
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",
],
packages=find_packages('.'),
include_package_data=True,
test_suite='test.suite_maker'
)