Changeset 27 for trunk/setup.py
- Timestamp:
- 08/27/05 16:45:27 (8 years ago)
- File:
-
- 1 edited
-
trunk/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/setup.py
r3 r27 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 readability 7 and interaction with scripting languages. Syck is an extension for 8 reading and writing YAML in scripting languages. PySyck is aimed to 9 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 ] 1 24 2 25 from distutils.core import setup, Extension … … 12 35 13 36 setup( 14 name='Syck', 15 version='0.55.1', 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 16 49 package_dir={'': 'lib'}, 17 50 packages=['syck'], … … 23 56 ), 24 57 ], 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 ],39 58 ) 40 59
Note: See TracChangeset
for help on using the changeset viewer.
