9 lines
146 B
Python
9 lines
146 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
from setuptools import setup
|
||
|
|
if __name__ == "__main__":
|
||
|
|
setup(
|
||
|
|
name = "dict2xml",
|
||
|
|
version = "1.7.3",
|
||
|
|
)
|
||
|
|
|