Skip to content
Snippets Groups Projects
Commit a5921f7a9bfa authored by Florent Aide's avatar Florent Aide
Browse files

mass commit

parent 71ab9d1f1861
No related branches found
No related tags found
No related merge requests found
syntax: glob
.tox/*
.eggs/*
**/*.pyc
**/*.pyo
*.swp
.tmp*
.coverage
htmlcov/*
coverage.xml
nosetests.xml
*.egg-info
dist/*
build/*
lib/*
*.orig
*.log
.settings/*
data/*
storage/*
.project
.pydevproject
.ropeproject
.idea
*.db
.~*
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -3,7 +3,7 @@
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.txt')) as f:
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
......@@ -13,6 +13,7 @@
'pyramid_chameleon',
'pyramid_debugtoolbar',
'cornice',
'waitress'
'waitress',
'sqlachemy',
]
......@@ -17,11 +18,12 @@
]
setup(name='tsp',
version='0.0',
description='tsp',
long_description=README + '\n\n' + CHANGES,
classifiers=[
setup(
name='tsp',
version='0.0',
description='tsp',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
......@@ -24,20 +26,20 @@
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='',
author_email='',
url='',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="tsp",
entry_points="""\
[paste.app_factory]
main = tsp:main
""",
)
],
author='',
author_email='',
url='',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="tsp",
entry_points="""\
[paste.app_factory]
main = tsp:main
""",
)
Metadata-Version: 1.1
Name: tsp
Version: 0.0
Summary: tsp
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: tsp README
0.0
---
- Initial version
Keywords: web pyramid pylons
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
CHANGES.txt
MANIFEST.in
README.txt
development.ini
production.ini
setup.py
tsp/__init__.py
tsp/tests.py
tsp/views.py
tsp.egg-info/PKG-INFO
tsp.egg-info/SOURCES.txt
tsp.egg-info/dependency_links.txt
tsp.egg-info/entry_points.txt
tsp.egg-info/not-zip-safe
tsp.egg-info/requires.txt
tsp.egg-info/top_level.txt
tsp/static/pyramid-16x16.png
tsp/static/pyramid.png
tsp/static/theme.css
tsp/static/theme.min.css
tsp/templates/mytemplate.pt
\ No newline at end of file
[paste.app_factory]
main = tsp:main
\ No newline at end of file
pyramid
pyramid_chameleon
pyramid_debugtoolbar
cornice
waitress
tsp
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment