setup.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. from setuptools import setup, find_packages
  4. from os import path
  5. from io import open
  6. with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'),
  7. encoding='utf-8') as f:
  8. long_description = f.read()
  9. setup(
  10. # Basic project information
  11. name='python3-boilerplate',
  12. version='0.0.1',
  13. # Authorship and online reference
  14. author='Basti Tee',
  15. author_email='basti.tee@posteo.de',
  16. url='https://github.com/BastiTee/python3-boilerplate',
  17. # Detailled description
  18. description='Python3 boilerplate module.',
  19. long_description=long_description,
  20. long_description_content_type='text/markdown',
  21. keywords='sample setuptools development',
  22. classifiers=[
  23. 'Development Status :: 4 - Beta',
  24. 'Intended Audience :: Developers',
  25. 'Natural Language :: English',
  26. 'License :: OSI Approved :: Apache Software License',
  27. 'Programming Language :: Python',
  28. 'Programming Language :: Python :: 3.6',
  29. 'Programming Language :: Python :: 3.7',
  30. ],
  31. # Package configuration
  32. packages=find_packages(exclude=("tests",)),
  33. include_package_data=True,
  34. python_requires=">=3.6",
  35. install_requires=[],
  36. # Licensing and copyright
  37. license='Apache 2.0',
  38. copyright='Copyright 2019 basti.tee',
  39. )