-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.18 KB
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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='CacheIntervals',
use_scm_version=True,
description='Memoization with interval parameters',
long_description=readme(),
url='https://github.com/cyril.godart@gmail.com/CacheIntervals',
download_url='https://github.com/cyril.godart@gmail.com/CacheIntervals/tarball/1.0.0',
author='Cyril Godart',
author_email='cyril.godart@gmail.com',
keywords=['?'],
packages=find_packages(),
install_requires=[
'pytest>=2.9.2',
'sphinx>=1.4.5',
'gcsfs>=0.3.1',
'tqdm>=4.36.1',
'pytest-cov>=2.8.1',
'coverage>=4.5.4',
'setuptools_scm'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)