Sitemap generator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.1 KiB

9 years ago
9 years ago
9 years ago
9 years ago
8 years ago
9 years ago
9 years ago
  1. from distutils.core import setup
  2. from setuptools import find_packages, setup
  3. EXCLUDE_FROM_PACKAGES = ['tests',]
  4. def get_version(major=0, minor=0, build=0):
  5. return '%s.%s.%s' % (major, minor, build)
  6. setup(
  7. name='sitemap-generator',
  8. version=get_version(
  9. major=0,
  10. minor=3,
  11. build=9,
  12. ),
  13. packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
  14. include_package_data=True,
  15. url='https://github.com/Haikson/sitemap-generator',
  16. license='GPL3',
  17. author='Kamo Petrosyan',
  18. author_email='kamo@haikson.com',
  19. description='web crawler and sitemap generator.',
  20. classifiers=[
  21. 'Environment :: Web Environment',
  22. 'Intended Audience :: Developers',
  23. 'License :: OSI Approved :: BSD License',
  24. 'Operating System :: OS Independent',
  25. 'Programming Language :: Python',
  26. 'Programming Language :: Python :: 2',
  27. 'Programming Language :: Python :: 2.7',
  28. 'Topic :: Software Development :: Libraries :: Python Modules',
  29. ],
  30. install_requires=['lxml', 'requests'],
  31. requires=['lxml', 'requests']
  32. )