Skip to content

Commit

Permalink
Version 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Apr 13, 2012
1 parent 2280947 commit 6782a26
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '0.1dev'
release = '0.1'
# The short X.Y version.
version = release.rstrip('dev')

Expand Down
27 changes: 26 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,36 @@
import os.path
from setuptools import setup


README = open(os.path.join(os.path.dirname(__file__), 'README')).read()


setup(
name='cssselect',
version='0.1dev',
version='0.1',
author='Ian Bicking',
author_email='ianb@colorstudy.com',
maintainer='Simon Sapin',
maintainer_email='simon.sapin@exyr.org',
description='cssselect is a parser for CSS Selectors that can translate '
'to XPath 1.0',
long_description=README,
url='http://packages.python.org/cssselect/',
license='BSD',
install_requires='lxml',
py_modules = ['cssselect', 'test_cssselect'], # XXX include the tests?
test_suite='test_cssselect',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
],
)

0 comments on commit 6782a26

Please sign in to comment.