You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

31 lines
811 B

from setuptools import setup, find_packages
with open('shibboleth.py') as f:
code = compile(f.read(), 'shibboleth.py', 'exec')
exec(code)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='shibboleth',
version=__version__,
author='Wayne Werner',
author_email='waynejwerner@gmail.com',
url='https://github.com/waynew/shibboleth',
py_modules=['shibboleth'],
long_description=read('README.rst'),
entry_points = {
'console_scripts': [
'shibboleth=shibboleth:run',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business',
'Topic :: Utilities',
],
)