File: setup.py

package info (click to toggle)
stdeb 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 824 kB
  • sloc: python: 2,149; sh: 191; makefile: 20
file content (35 lines) | stat: -rw-r--r-- 1,072 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from distutils.core import setup
import codecs

with codecs.open('README.rst', encoding='utf-8') as file:
    long_description = file.read()


setup(
    name='stdeb',
    # Keep version in sync with stdeb/__init__.py and install section
    # of README.rst.
    version='0.10.2',
    author='Andrew Straw',
    author_email='strawman@astraw.com',
    description='Python to Debian source package conversion utility',
    long_description=long_description,
    license='MIT',
    url='http://github.com/astraw/stdeb',
    packages=['stdeb', 'stdeb.command'],
    scripts=[
        'scripts/py2dsc',
        'scripts/py2dsc-deb',
        'scripts/pypi-download',
        'scripts/pypi-install',
    ],
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'Intended Audience :: System Administrators',
        'License :: OSI Approved :: MIT License',
        'Operating System :: POSIX :: Linux',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
    ],
)