~ubuntu-branches/debian/experimental/routes/experimental

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2015-01-18 20:40:41 UTC
  • mfrom: (1.2.9)
  • Revision ID: package-import@ubuntu.com-20150118204041-ow4ktbqbhbxdzgsu
Tags: 2.1-1
* New upstream release
  - drop_changes_from_description patch refreshed
* Homepage updated
* Standards-Version bumped to 3.9.6 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
__version__ = '2.0'
 
1
__version__ = '2.1'
2
2
 
3
 
import os, sys
 
3
import io
 
4
import os
 
5
import sys
4
6
 
5
7
from setuptools import setup, find_packages
6
8
 
7
9
here = os.path.abspath(os.path.dirname(__file__))
8
 
README = open(os.path.join(here, 'README.rst')).read()
9
 
#CHANGES = open(os.path.join(here, 'CHANGELOG.rst')).read()
 
10
with io.open(os.path.join(here, 'README.rst'), encoding='utf8') as f:
 
11
    README = f.read()
 
12
#with io.open(os.path.join(here, 'CHANGELOG.rst'), encoding='utf8') as f:
 
13
#    CHANGES = f.read()
10
14
PY3 = sys.version_info[0] == 3
11
15
 
12
16
extra_options = {
26
30
      long_description=README,
27
31
      classifiers=["Development Status :: 5 - Production/Stable",
28
32
                   "Intended Audience :: Developers",
29
 
                   "License :: OSI Approved :: BSD License",
 
33
                   "License :: OSI Approved :: MIT License",
30
34
                   "Topic :: Internet :: WWW/HTTP",
31
35
                   "Topic :: Software Development :: Libraries :: Python Modules",
 
36
                   "Programming Language :: Python :: Implementation :: PyPy",
 
37
                   "Programming Language :: Python :: Implementation :: CPython",
32
38
                   'Programming Language :: Python',
33
39
                   "Programming Language :: Python :: 2",
34
40
                   "Programming Language :: Python :: 2.6",
35
41
                   "Programming Language :: Python :: 2.7",
36
42
                   "Programming Language :: Python :: 3",
37
43
                   "Programming Language :: Python :: 3.2",
38
 
                   "Programming Language :: Python :: 3.3"
 
44
                   "Programming Language :: Python :: 3.3",
 
45
                   "Programming Language :: Python :: 3.4"
39
46
                   ],
40
47
      keywords='routes webob dispatch',
41
48
      author="Ben Bangert",
42
49
      author_email="ben@groovie.org",
43
 
      url='http://routes.groovie.org/',
 
50
      url='http://routes.readthedocs.org/',
44
51
      license="MIT",
45
52
      test_suite="nose.collector",
46
53
      include_package_data=True,