Skip to content

Instantly share code, notes, and snippets.

@dragonee
Created March 14, 2022 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dragonee/c37b2e6c93cf2b003224fb140db6ada1 to your computer and use it in GitHub Desktop.
Save dragonee/c37b2e6c93cf2b003224fb140db6ada1 to your computer and use it in GitHub Desktop.
setup.py example
from setuptools import setup, find_packages
setup(
name='randomtools',
version='1.0.0',
description='A package that provides all maintenance tasks',
author='Michał Moroz <michal@makimo.pl>',
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