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