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

  1. from setuptools import setup, find_packages
  2. with open('shibboleth.py') as f:
  3. code = compile(f.read(), 'shibboleth.py', 'exec')
  4. exec(code)
  5. def read(fname):
  6. return open(os.path.join(os.path.dirname(__file__), fname)).read()
  7. setup(
  8. name='shibboleth',
  9. version=__version__,
  10. author='Wayne Werner',
  11. author_email='waynejwerner@gmail.com',
  12. url='https://github.com/waynew/shibboleth',
  13. py_modules=['shibboleth'],
  14. long_description=read('README.rst'),
  15. entry_points = {
  16. 'console_scripts': [
  17. 'shibboleth=shibboleth:run',
  18. ],
  19. },
  20. classifiers=[
  21. 'Development Status :: 3 - Alpha',
  22. 'Environment :: Console',
  23. 'Programming Language :: Python :: 3.6',
  24. 'Topic :: Office/Business',
  25. 'Topic :: Utilities',
  26. ],
  27. )