Version bump to 2.2
[g-pypi.git] / setup.py
1 #!/usr/bin/python
2
3 from setuptools import setup
4
5 from g_pypi.__init__ import __version__ as VERSION
6
7
8 setup(name="g-pypi",
9     license="GPL-2",
10     version=VERSION,
11     description="Tool for creating Gentoo ebuilds for Python packages by querying PyPI (The Cheese Shop)",
12     long_description=open("README", "r").read(),
13     maintainer="Rob Cakebread",
14     author="Rob Cakebread",
15     author_email="gentoodev@gmail.com",
16     url="http://tools.assembla.com/g-pypi/",
17     keywords="gentoo ebuilds PyPI setuptools cheeseshop distutils eggs portage package management",
18     classifiers=["Development Status :: 2 - Pre-Alpha",
19                  "Intended Audience :: Developers",
20                  "License :: OSI Approved :: GNU General Public License (GPL)",
21                  "Programming Language :: Python",
22                  "Topic :: Software Development :: Libraries :: Python Modules",
23                  ],
24     install_requires=["Pygments",
25                       "setuptools",
26                       "Cheetah",
27                       "ConfigObj",
28                       ],
29     packages=['g_pypi'],
30     package_dir={'g_pypi':'g_pypi' },
31     include_package_data = True,
32     entry_points={'console_scripts': ['g-pypi = g_pypi.cli:main']},
33     test_suite='nose.collector',
34 )
35