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 <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