14 lines
234 B
Python
14 lines
234 B
Python
|
from setuptools import setup
|
||
|
|
||
|
requires = [
|
||
|
'pyramid',
|
||
|
'pyramid_jinja2',
|
||
|
]
|
||
|
|
||
|
setup(name='filestorage',
|
||
|
install_requires=requires,
|
||
|
entry_points="""\
|
||
|
[paste.app_factory]
|
||
|
main = filestorage:main
|
||
|
""",
|
||
|
)
|