setup.py 258 B

12345678910111213
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. from setuptools import find_packages
  4. setup(name='blogit2',
  5. version='0.0.1',
  6. license="GNU GPL",
  7. entry_points={
  8. 'console_scripts': ['blogit2 = blogit2:main']
  9. }
  10. )