9 lines
178 B
Python
9 lines
178 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="mitxmako",
|
|
version="0.1",
|
|
packages=find_packages(exclude=["tests"]),
|
|
install_requires=['distribute'],
|
|
)
|