11 lines
172 B
Python
11 lines
172 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
py_modules = ["btest-sphinx"]
|
|
|
|
setup(
|
|
version="1.2.dev9", # Filled in automatically.
|
|
py_modules=py_modules,
|
|
)
|