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