-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsetup.py
39 lines (37 loc) · 1.24 KB
/
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
32
33
34
35
36
37
38
39
import os
import os.path
from setuptools import setup
def read(fname):
if os.path.exists(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
else:
return ''
setup(
name = "pyad",
version = "0.5.15",
author = "Zakir Durumeric",
author_email = "[email protected]",
maintainer = "Zakir Durumeric",
maintainer_email = "[email protected]",
download_url = "https://github.com/zakird/pyad/",
url = "https://zakird.github.io/pyad/",
description = "An Object-Oriented Active Directory management framework built on ADSI",
license = "Apache License, Version 2.0",
keywords = "python microsoft windows active directory AD adsi",
packages=[
'pyad'
],
long_description = read('README.rst'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP"
],
install_requires=[
'setuptools',
'future',
]
)