setup.py 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. import versioneer
  2. from setuptools import setup, find_packages
  3. setup(
  4. name='gitstats',
  5. version=versioneer.get_version(),
  6. cmdclass=versioneer.get_cmdclass(),
  7. description='gitstats',
  8. long_description='Statistics for Git Repo',
  9. url='',
  10. author='rappdw',
  11. author_email='rappdw@gmail.com',
  12. license='MIT',
  13. keywords='library',
  14. classifiers=[
  15. 'Development Status :: 3 - Alpha',
  16. 'Intended Audience :: Developers',
  17. # Set this topic to what works for you
  18. 'Topic :: Python :: Library',
  19. # Pick your license as you wish (should match "license" above)
  20. 'License :: MIT',
  21. 'Programming Language :: Python :: 3.5',
  22. ],
  23. packages=find_packages(exclude=['contrib', 'docs', 'tests']),
  24. include_package_data=True,
  25. # Alternatively, if you want to distribute just a my_module.py, uncomment
  26. # this:
  27. # py_modules=["my_module"],
  28. setup_requires=[
  29. # Setuptools 18.0 properly handles Cython extensions.
  30. 'setuptools>=18.0'
  31. ],
  32. install_requires=[
  33. ],
  34. extras_require={
  35. 'dev': [
  36. 'wheel>=0.30.0'
  37. ],
  38. 'test': [
  39. ],
  40. },
  41. package_data={
  42. # 'sample': ['package_data.dat'],
  43. },
  44. entry_points={
  45. 'console_scripts': [
  46. 'gitstats = gitstats:main',
  47. ],
  48. },
  49. # entry_points={
  50. # 'console_scripts': [
  51. # 'sample=sample:main',
  52. # ],
  53. # },
  54. )