forked from sara-nl/picasclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 760 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (24 loc) · 760 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='picas',
version='0.2.10',
description='Python client using CouchDB as a token pool server.',
author='Jan Bot,Joris Borgdorff',
author_email='helpdesk@surfsara.nl',
url='https://github.com/sara-nl/picasclient',
download_url='https://github.com/sara-nl/picasclient/tarball/0.2.10',
packages=['picas'],
install_requires=['couchdb'],
license="MIT",
extras_require={
'test': ['flake8', 'nose'],
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
)