8 lines
109 B
Python
8 lines
109 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='EWS',
|
|
packages=['ews'],
|
|
install_requires=['webob'],
|
|
)
|