setup.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. from setuptools import setup
  2. def readme():
  3. with open('README.rst') as f:
  4. return f.read()
  5. setup(name='aka',
  6. version='1.0.2',
  7. description='Rename/copy files using Python code',
  8. long_description=readme(),
  9. url='https://notabug.org/Uglemat/aka',
  10. scripts = ['scripts/aka'],
  11. author='Mattias Ugelvik',
  12. author_email='uglemat@gmail.com',
  13. license='GPL3+',
  14. packages=['aka'],
  15. install_requires=['contex'],
  16. classifiers=[
  17. 'Environment :: Console',
  18. 'Intended Audience :: System Administrators',
  19. 'Intended Audience :: Developers',
  20. 'Intended Audience :: End Users/Desktop',
  21. 'Topic :: System :: Systems Administration',
  22. 'Topic :: Utilities',
  23. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  24. 'Programming Language :: Python :: 3',
  25. ],
  26. test_suite='nose.collector',
  27. tests_require=['nose'],
  28. package_data={
  29. 'readme': ['README.rst'],
  30. },
  31. include_package_data=True,
  32. zip_safe=False)