From b0a9a0d5ab343c7ab40e04f926daedc7e35ac58e Mon Sep 17 00:00:00 2001 From: Quantum Date: Sun, 13 Aug 2017 20:47:01 -0400 Subject: [PATCH] Create setup.py --- setup.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..32e5e86 --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python + +from setuptools import setup, find_packages + +setup( + name='optimize-later', + version='0.1', + description='Mark potentially slow blocks for notifications when it actually turns out too slow, ' + 'so you can optimize it.', + author='Quantum', + author_email='quantum@dmoj.ca', + url='https://github.com/quantum5/optimize-later', + keywords='optimize profiler speed', + packages=find_packages(), + include_package_data=True, + license='MIT', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Software Development', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], + zip_safe=False, +)