from setuptools import setup, find_packages setup( name = "Reconstructor", version = "3.0a1", packages = find_packages(), # Project uses reStructuredText, so ensure that the docutils get # installed or upgraded on the target machine install_requires = ['docutils>=0.3'], # package_data = { # # If any package contains *.txt or *.rst files, include them: # '': ['*.txt', '*.rst'], # # And include any *.msg files found in the 'hello' package, too: # 'hello': ['*.msg'], # }, # metadata for upload to PyPI author = "The Reconstructor Team", author_email = "reconstructor@aperantis.com", description = "Reconstructor is an Ubuntu GNU/Linux CD Creator.", license = "GPL", keywords = "reconstructor live cd ubuntu", url = "http://reconstructor.aperantis.com/", # project home page, if any download_url = "http://reconstructor.aperantis.com/index.php?option=com_remository&Itemid=33&func=select&id=5" # could also include long_description, classifiers, etc. )