~ubuntu-branches/ubuntu/wily/python-roman/wily

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Andrea Colangelo
  • Date: 2013-12-28 10:24:33 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20131228102433-joxka86hn85rb1tu
Tags: 2.0.0-1
* New upstream release.
* New maintainer. (Closes: #708549)
* debian/patches/*: refresh.
* debian/control:
  + add "XS-Testsuite: autopkgtest".
  + bump Standards-Version to 3.9.5.
* debian/copyright: update to DEP-5.
* debian/watch: update, upstream now uses .zip files.
* Convert to dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
setup (
9
9
    name='roman',
10
 
    version='1.4.0',
 
10
    version='2.0.0',
11
11
    author = "Mark Pilgrim",
12
12
    author_email = "f8dy@diveintopython.org",
13
13
    description = "Integer to Roman numerals converter",
 
14
    long_description = open('CHANGES.txt').read(),
14
15
    license = "Python 2.1.1",
15
16
    keywords = "roman",
16
17
    classifiers = [
17
18
        'Development Status :: 5 - Production/Stable',
18
19
        'Intended Audience :: Developers',
 
20
        'Programming Language :: Python',
 
21
        'Programming Language :: Python :: 2',
 
22
        'Programming Language :: Python :: 2.6',
 
23
        'Programming Language :: Python :: 2.7',
 
24
        'Programming Language :: Python :: 3',
 
25
        'Programming Language :: Python :: 3.3',
 
26
        'Programming Language :: Python :: Implementation :: CPython',
 
27
        'Programming Language :: Python :: Implementation :: PyPy',
19
28
        'License :: OSI Approved :: Python Software Foundation License',
20
29
        'Programming Language :: Python',
21
30
        'Natural Language :: English',
23
32
    url = 'http://pypi.python.org/pypi/roman',
24
33
    package_dir={"": "src"},
25
34
    py_modules=["roman"],
26
 
    cmdclass=dict(build_py=build_py)
 
35
    cmdclass=dict(build_py=build_py),
 
36
    test_suite = 'tests',
27
37
    )