diff options
| author | Sean Brant | 2013-03-09 15:57:26 -0600 |
|---|---|---|
| committer | Sean Brant | 2013-03-09 15:57:26 -0600 |
| commit | fa90f078e5de5a1acbd9eda529db17ab1b2b4cb3 (patch) | |
| tree | 7d3014b692f53e5272c52a7f87c66f5aa9908b44 /setup.py | |
| download | pykss-fa90f078e5de5a1acbd9eda529db17ab1b2b4cb3.tar.bz2 | |
Initial Import
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8d4c498 --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +from setuptools import setup, find_packages + + +setup( + name='pykss', + version='0.1', + description='Python implementation of KSS', + long_description=open('README.rst').read(), + author='Sean Brant', + author_email='brant.sean@gmail.com', + url='https://github.com/seanbrant/pykss', + license='BSD', + packages=find_packages(exclude=['tests']), + include_package_data=True, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + ], + zip_safe=False, + test_suite='runtests.runtests', + extras_require={'tests': ['pytest', 'flake8']}, +) |
