Created
March 14, 2022 08:36
-
-
Save dragonee/c37b2e6c93cf2b003224fb140db6ada1 to your computer and use it in GitHub Desktop.
setup.py example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup, find_packages | |
setup( | |
name='randomtools', | |
version='1.0.0', | |
description='A package that provides all maintenance tasks', | |
author='Michał Moroz <[email protected]>', | |
classifiers=[ | |
'Development Status :: 3 - Alpha', | |
'Intended Audience :: Developers', | |
'License :: OSI Approved :: MIT License', | |
'Programming Language :: Python :: 3', | |
], | |
packages=('randomtools',), | |
package_dir={'': 'src'}, | |
install_requires=['docopt',], | |
python_requires='>=3', | |
entry_points={ | |
'console_scripts': [ | |
'copiesfromcsv = randomtools.copiesfromcsv:main', | |
], | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment