forked from stdeb/stdeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 659 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
#import stdeb.command
#import stdeb.command.sdist_dsc
setup(name='stdeb',
# Keep version in sync with stdeb/__init__.py, Install section
# of README.rst, and USER_AGENT in scripts/pypi-install.
version='0.6.0+git',
author='Andrew Straw',
author_email='[email protected]',
description='Python to Debian source package conversion utility',
long_description=open('README.rst').read(),
license='MIT',
url='http://github.com/astraw/stdeb',
packages=['stdeb','stdeb.command'],
scripts=['scripts/py2dsc',
'scripts/pypi-install',
],
)