mirror of
https://github.com/sprockets/sprockets.git
synced 2024-11-23 19:29:52 +00:00
Update .gitignore and setup.py
This commit is contained in:
parent
3c9087586f
commit
daf3462922
2 changed files with 7 additions and 4 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
|||
.pyc
|
||||
.DS_Store
|
||||
.pyc
|
||||
build
|
||||
dist
|
||||
*.egg-info
|
||||
|
|
6
setup.py
6
setup.py
|
@ -1,5 +1,6 @@
|
|||
from setuptools import setup
|
||||
import os
|
||||
import platform
|
||||
|
||||
requirements = ['tornado']
|
||||
tests_require = ['coverage', 'coveralls', 'mock', 'nose']
|
||||
|
@ -17,9 +18,8 @@ setup(name='sprockets',
|
|||
description=('A modular, loosely coupled micro-framework built on top '
|
||||
'of Tornado simplifying the creation of web applications '
|
||||
'and RabbitMQ workers'),
|
||||
entry_points={'console_scripts': ['sprockets=sprockets:main']}
|
||||
maintainer='Gavin M. Roy',
|
||||
maintainer_email='gavinr@aweber.com',
|
||||
entry_points={'console_scripts': ['sprockets=sprockets:main']},
|
||||
author='AWeber Communications',
|
||||
url='https://github.com/sprockets/sprockets',
|
||||
install_requires=requirements,
|
||||
license=open('LICENSE').read(),
|
||||
|
|
Loading…
Reference in a new issue