mirror of
https://github.com/sprockets/sprockets.git
synced 2024-11-24 03:00:17 +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
|
.DS_Store
|
||||||
|
.pyc
|
||||||
|
build
|
||||||
|
dist
|
||||||
|
*.egg-info
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -1,5 +1,6 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import os
|
import os
|
||||||
|
import platform
|
||||||
|
|
||||||
requirements = ['tornado']
|
requirements = ['tornado']
|
||||||
tests_require = ['coverage', 'coveralls', 'mock', 'nose']
|
tests_require = ['coverage', 'coveralls', 'mock', 'nose']
|
||||||
|
@ -17,9 +18,8 @@ setup(name='sprockets',
|
||||||
description=('A modular, loosely coupled micro-framework built on top '
|
description=('A modular, loosely coupled micro-framework built on top '
|
||||||
'of Tornado simplifying the creation of web applications '
|
'of Tornado simplifying the creation of web applications '
|
||||||
'and RabbitMQ workers'),
|
'and RabbitMQ workers'),
|
||||||
entry_points={'console_scripts': ['sprockets=sprockets:main']}
|
entry_points={'console_scripts': ['sprockets=sprockets:main']},
|
||||||
maintainer='Gavin M. Roy',
|
author='AWeber Communications',
|
||||||
maintainer_email='gavinr@aweber.com',
|
|
||||||
url='https://github.com/sprockets/sprockets',
|
url='https://github.com/sprockets/sprockets',
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
license=open('LICENSE').read(),
|
license=open('LICENSE').read(),
|
||||||
|
|
Loading…
Reference in a new issue