setup.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. """Setup script for twitter_creator package."""
  2. import setuptools
  3. # Get version information without importing the package
  4. SHORT_DESCRIPTION = 'A tool to create twitter account'
  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 :: 3',
  11. 'Programming Language :: Python :: 3.3',
  12. 'Programming Language :: Python :: 3.4',
  13. 'Programming Language :: Python :: 3.5',
  14. 'Programming Language :: Python :: 3.6',
  15. 'Programming Language :: Python :: Implementation :: PyPy',
  16. 'Topic :: Software Development :: Build Tools',
  17. ]
  18. setuptools.setup(
  19. name='twitter_creator',
  20. version='0.6.5',
  21. description=SHORT_DESCRIPTION,
  22. long_description=LONG_DESCRIPTION,
  23. author='liuyuqi',
  24. author_email='liuyuqi.gov@msn.cn',
  25. url='https://git.yoqi.me/autocreator/twitter_creator',
  26. packages=setuptools.find_packages(),
  27. license='GPLv3+',
  28. platforms=['any'],
  29. keywords='distutils setuptools egg pip requirements',
  30. classifiers=CLASSIFIERS,
  31. entry_points={
  32. 'console_scripts': [
  33. 'gen_twitter = twitter_creator.__init__:main',
  34. ],
  35. },
  36. )