From 434fc770b88764df382eefddcea76e81969f5ce2 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Mon, 8 Feb 2016 23:07:49 +0100 Subject: Initial commit --- setup.py | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8afd4f1 --- /dev/null +++ b/setup.py @@ -0,0 +1,53 @@ +from setuptools import setup + +setup( + name='clean-tools', + description='Clean tools', + long_description='Clean package manager and improved make script', + + use_scm_version=True, + setup_requires=['setuptools_scm'], + + url='https://github.com/camilstaps/clean-tools', + + author='Camil Staps', + author_email='info@camilstaps.nl', + + license='MIT', + + classifiers=[ + 'Development Status :: 3 - Alpha', + + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Build Tools', + + 'License :: OSI Approved :: MIT License', + + 'Natural Language :: English', + + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + + 'Operating System :: MacOS', + 'Operating System :: POSIX', + 'Operating System :: Unix', + ], + + keywords='packaging library clean development', + + packages=['cleantools'], + + install_requires=['click', 'gitpython'], + + entry_points={ + 'console_scripts': [ + 'clmgr = cleantools.clmgr:main', + 'clim = cleantools.clim:main', + ], + }, +) + -- cgit v1.2.3