-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (25 loc) · 862 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
import os
import setuptools
SETUPDIR = os.path.dirname(__file__)
PKGDIR = os.path.join(SETUPDIR, 'src')
with open(os.path.join(SETUPDIR, 'README.md'), 'r') as f:
long_description = f.read()
setuptools.setup(
name='edap',
version='0.0.1',
author='EnterpriseyIntranet',
description="Python wrapper for LDAP",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/EnterpriseyIntranet/edap",
packages=setuptools.find_packages(PKGDIR),
include_package_data=True,
install_requires=['python-ldap'],
package_dir={'': 'src'},
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: GNU General Public License (GPL)',
"Operating System :: OS Independent",
],
)