-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 751 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 751 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='memcache_lock',
version='0.0.3',
description='Locking mechanism for Python 2.7 GAE, using memcache',
long_description=read('README.md'),
url='https://github.com/linuxpi/memcache_lock',
author='Varun Bansal',
author_email='varunb94@gmail.com',
license='MIT',
packages=find_packages(),
zip_safe=False,
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2'
)
)