mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 19:29:28 +00:00
a58be5af37
So many things were wrong with the last version... soo soooo many things.
60 lines
1.8 KiB
Python
Executable file
60 lines
1.8 KiB
Python
Executable file
#!/usr/bin/env python
|
|
#
|
|
|
|
import os.path
|
|
import sys
|
|
|
|
import setuptools
|
|
|
|
from sprockets import http
|
|
|
|
|
|
def read_requirements(filename):
|
|
requirements = []
|
|
try:
|
|
with open(os.path.join('requires', filename)) as req_file:
|
|
for line in req_file:
|
|
if '#' in line:
|
|
line = line[:line.index('#')]
|
|
line = line.strip()
|
|
if line.startswith('-'):
|
|
pass
|
|
requirements.append(line)
|
|
except IOError:
|
|
pass
|
|
return requirements
|
|
|
|
|
|
requirements = read_requirements('installation.txt')
|
|
tests_require = read_requirements('testing.txt')
|
|
|
|
setuptools.setup(
|
|
name='sprockets.http',
|
|
version=http.__version__,
|
|
description='Tornado HTTP application runner',
|
|
author='AWeber Communications',
|
|
author_email='api@aweber.com',
|
|
url='https://github.com/sprockets/sprockets.http',
|
|
install_requires=requirements,
|
|
license='BSD',
|
|
namespace_packages=['sprockets'],
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: No Input/Output (Daemon)',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Natural Language :: English',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Software Development :: Libraries',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'],
|
|
test_suite='nose.collector',
|
|
tests_require=tests_require,
|
|
zip_safe=True,
|
|
)
|