~ubuntu-branches/ubuntu/trusty/seqdiag/trusty-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Kouhei Maeda
  • Date: 2013-11-27 10:47:59 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20131127104759-ji9ow0brddt7sz5c
Tags: 0.9.0-1
* New upstream release
* debian/control
  - Update dependency python-blockdiag version to >= 1.3.1
  - Change dependenry python-imaging to python-pil
  - Append to Build-Depends:
    - quilt, fonts-ipafont-gothic | fonts-japanese-gothic
* debian/rules
  - Append quilt option to dh command
* debian/copyright
  - Change "Format" section to latest url
* debian/docs
  - Remove src/TODO.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
sys.path.insert(0, 'src')
6
6
import seqdiag
7
7
 
8
 
long_description = \
9
 
        open(os.path.join("src","README.txt")).read() + \
10
 
        open(os.path.join("src","TODO.txt")).read()
 
8
long_description = open(os.path.join("src","README.txt")).read()
11
9
 
12
10
classifiers = [
13
11
    "Development Status :: 3 - Alpha",
19
17
    "Topic :: Text Processing :: Markup",
20
18
]
21
19
 
 
20
test_requires = [
 
21
             'Nose',
 
22
             'pep8>=1.3',]
 
23
 
 
24
 
 
25
# only for Python2.6
 
26
if sys.version_info > (2, 6) and sys.version_info < (2, 7):
 
27
    test_requires.append('unittest2')
 
28
 
 
29
 
22
30
setup(
23
31
     name='seqdiag',
24
32
     version=seqdiag.__version__,
38
46
     include_package_data=True,
39
47
     install_requires=[
40
48
        'setuptools',
41
 
        'blockdiag>=1.2.4',
 
49
        'blockdiag>=1.3.0',
42
50
         # -*- Extra requirements: -*-
43
51
     ],
44
52
     extras_require=dict(
45
 
         test=[
46
 
             'Nose',
47
 
             'pep8>=1.3',
48
 
             'unittest2',
49
 
         ],
 
53
         test=test_requires,
50
54
         rst=[
51
55
             'docutils',
52
56
         ],
53
57
     ),
54
58
     test_suite='nose.collector',
55
 
     tests_require=['Nose','pep8'],
 
59
     tests_require=test_requires,
56
60
     entry_points="""
57
61
        [console_scripts]
58
62
        seqdiag = seqdiag.command:main