mti840-projet/device/setup.py

35 lines
704 B
Python

import os
from setuptools import setup, find_packages
requires = [
'plaster_pastedeploy',
'pyramid',
'waitress',
]
setup(
name='device',
version='0.1',
description='device',
classifiers=[
'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,
entry_points={
'paste.app_factory': [
'main = device:main',
],
},
)