setup.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. """Setup script for reflutter"""
  2. import setuptools
  3. # Get version information without importing the package
  4. SHORT_DESCRIPTION = 'Reverse Flutter'
  5. LONG_DESCRIPTION = open('README.md', 'rt').read()
  6. CLASSIFIERS = [
  7. 'Development Status :: 5 - Production/Stable',
  8. 'Intended Audience :: Developers',
  9. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  10. 'Programming Language :: Python :: 2',
  11. 'Programming Language :: Python :: 2.7',
  12. 'Programming Language :: Python :: 3',
  13. 'Programming Language :: Python :: 3.3',
  14. 'Programming Language :: Python :: 3.4',
  15. 'Programming Language :: Python :: 3.5',
  16. 'Programming Language :: Python :: 3.6',
  17. 'Programming Language :: Python :: Implementation :: PyPy',
  18. 'Topic :: Software Development :: Build Tools',
  19. ]
  20. setuptools.setup(
  21. name='reflutter',
  22. version='0.6.5',
  23. description=SHORT_DESCRIPTION,
  24. long_description=LONG_DESCRIPTION,
  25. author='impact',
  26. author_email='routeros7.1@gmail.com',
  27. url='https://github.com/ptswarm/reFlutter',
  28. packages=setuptools.find_packages(),
  29. license='GPLv3+',
  30. platforms=['any'],
  31. keywords='distutils setuptools egg pip requirements',
  32. classifiers=CLASSIFIERS,
  33. entry_points={
  34. 'console_scripts': [
  35. 'reflutter = src.__init__:main',
  36. ],
  37. },
  38. )