Skip to content

Commit

Permalink
add classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
jstaf committed May 29, 2018
1 parent fc2cbc5 commit 8403886
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import glob
from setuptools import setup

# import version from version.py so it's only specified in one spot
Expand All @@ -17,6 +16,7 @@
packages=['ezldap'],
scripts=['bin/ezldap'],
include_package_data=True,
zip_safe=False,
install_requires=[
'PyYAML',
'ldap3'
Expand All @@ -29,5 +29,15 @@
'pytest-cov',
'docker-compose'
],
zip_safe=False
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta'
]
)

0 comments on commit 8403886

Please sign in to comment.