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',
author='Andrew Straw',
author_email='strawman@astraw.com',
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',
],
)
|