-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
executable file
·31 lines (27 loc) · 1019 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
30
31
from setuptools import setup
import codecs
import os.path
__dir__ = os.path.dirname(os.path.abspath(__file__))
setup(
name='Crowd',
license='BSD',
py_modules=['crowd'],
version='3.1.0',
install_requires=['requests', 'lxml'],
description='A python client to the Atlassian Crowd REST API',
long_description=codecs.open(os.path.join(__dir__, 'README.rst'),
encoding='utf-8').read(),
author='Alexander Else',
author_email='aelse@else.id.au',
url='https://github.com/pycontribs/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.5",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
)