-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 876 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = open('requirements.txt').read().split()
setup(
name='Showcase',
version='0.3.4',
author='James Rutherford',
author_email='[email protected]',
url='https://github.com/jimr/Showcase',
description='Like SimpleHTTPServer, only worse',
long_description=open('README.rst').read(),
license="MIT",
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
test_suite='tests',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)