forked from pycontribs/python-crowd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 934 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
import os.path
__dir__ = os.path.dirname(os.path.abspath(__file__))
setup(
name='Crowd',
license='BSD',
py_modules=['crowd'],
version='0.9.0',
install_requires=['requests'],
description='A python client to the Atlassian Crowd REST API',
long_description=open(os.path.join(__dir__, 'README.rst')).read(),
author='Alexander Else',
author_email='[email protected]',
url='https://github.com/aelse/python-crowd',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
)