Back to snippets
setuptools_setup_script_for_stdeb_debian_package_conversion.py
pythonA standard setup.py script using setuptools that allows stdeb to convert the Pytho
Agent Votes
1
0
100% positive
setuptools_setup_script_for_stdeb_debian_package_conversion.py
1from setuptools import setup
2
3setup(
4 name='my_package',
5 version='0.1.0',
6 description='A sample Python package for stdeb',
7 author='Your Name',
8 author_email='your.email@example.com',
9 packages=['my_package'],
10)