-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 915 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 915 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
26
27
28
29
30
31
32
33
34
import os
from setuptools import setup
def read(fname):
return open(
os.path.join(
os.path.dirname(__file__), fname)
).read()
setup(
name='cachelock',
license='MIT',
version='0.0.3',
python_requires='>=3.6',
url='https://github.com/douglasfarinelli/python-cachelock',
author='Douglas Farinelli',
author_email='douglas.farinelli@gmail.com',
keywords='lock cache once celery tasks single-execution',
description='A simple look that uses the cache as acquirer',
long_description=read('README.md'),
py_modules=['cachelock'],
platforms='any',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
]
)