diff options
| author | Georg Brandl <georg@python.org> | 2008-02-09 23:09:36 +0000 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-02-09 23:09:36 +0000 |
| commit | a1e379d46c9c9d3ca891ab8110495a08ca21c1a9 (patch) | |
| tree | ce73d33574afdaccc00c56f828f87e25642787d6 /setup.py | |
| parent | b2ec05e690aa2870967ed188ac9a3be0b0fd8db6 (diff) | |
| download | sphinx-git-a1e379d46c9c9d3ca891ab8110495a08ca21c1a9.tar.gz | |
Add setup.py, add quickstart script.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..a36928486 --- /dev/null +++ b/setup.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +import ez_setup +ez_setup.use_setuptools() +import sphinx + +from setuptools import setup, Feature + +setup( + name='Sphinx', + version=sphinx.__version__, +# url='', +# download_url='', + license='BSD', + author='Georg Brandl', + author_email='georg@python.org', + description='Python documentation generator', + long_description='', + zip_safe=False, + classifiers=[ + 'Development Status :: 2 - Pre-Alpha', + 'Environment :: Console', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Documentation', + 'Topic :: Utilities', + ], + platforms='any', + packages=['sphinx'], + include_package_data=True, + scripts=['sphinx-build.py', 'sphinx-web.py', 'sphinx-quickstart.py'], + entry_points={ + 'console_scripts': [ + 'sphinx-build = sphinx:main', + 'sphinx-web = sphinx.web:main', + 'sphinx-quickstart = sphinx.quickstart:main' + ] + }, + install_requires=['Pygments>=0.8', 'docutils==0.4'] +) |
