Changes in trunk/setup.py [27:3]
- File:
-
- 1 edited
-
trunk/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/setup.py
r27 r3 1 2 NAME = 'PySyck'3 VERSION = '0.55.1'4 DESCRIPTION = "Python bindings for the Syck YAML parser and emitter"5 LONG_DESCRIPTION = """\6 YAML is a data serialization format designed for human readability7 and interaction with scripting languages. Syck is an extension for8 reading and writing YAML in scripting languages. PySyck is aimed to9 update the current Python bindings for Syck."""10 AUTHOR = "Kirill Simonov"11 AUTHOR_EMAIL = 'xi@resolvent.net'12 LICENSE = "BSD"13 PLATFORMS = "Any"14 URL = "http://xitology.org/pysyck/"15 DOWNLOAD_URL = URL + "%s-%s.tar.gz" % (NAME, VERSION)16 CLASSIFIERS = [17 "Development Status :: 3 - Alpha",18 "Intended Audience :: Developers",19 "License :: OSI Approved :: BSD License",20 "Programming Language :: Python",21 "Topic :: Software Development :: Libraries :: Python Modules",22 "Topic :: Text Processing :: Markup",23 ]24 1 25 2 from distutils.core import setup, Extension … … 35 12 36 13 setup( 37 name=NAME, 38 version=VERSION, 39 description=DESCRIPTION, 40 long_description=LONG_DESCRIPTION, 41 author=AUTHOR, 42 author_email=AUTHOR_EMAIL, 43 license=LICENSE, 44 platforms=PLATFORMS, 45 url=URL, 46 download_url=DOWNLOAD_URL, 47 classifiers=CLASSIFIERS, 48 14 name='Syck', 15 version='0.55.1', 49 16 package_dir={'': 'lib'}, 50 17 packages=['syck'], … … 56 23 ), 57 24 ], 25 description="Python bindings for the Syck YAML parser", 26 author="Kirill Simonov", 27 author_email="xi@resolvent.net", 28 license="BSD", 29 url="http://xitology.org/python-syck/", 30 download_url="http://xitology.org/*FIXME*", 31 classifiers=[ 32 "Development Status :: 2 - Pre-Alpha", 33 "Intended Audience :: Developers", 34 "License :: OSI Approved :: BSD License", 35 "Programming Language :: Python", 36 "Topic :: Software Development :: Libraries :: Python Modules", 37 "Topic :: Text Processing :: Markup", 38 ], 58 39 ) 59 40
Note: See TracChangeset
for help on using the changeset viewer.
