aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCamil Staps2016-02-08 23:07:49 +0100
committerCamil Staps2016-02-08 23:07:49 +0100
commit434fc770b88764df382eefddcea76e81969f5ce2 (patch)
treed63039e3b3b6031cc54fc34690319746c9402b8f /setup.py
Initial commit
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py53
1 files changed, 53 insertions, 0 deletions
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',
+ ],
+ },
+)
+