12 lines
237 B
Python
12 lines
237 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="calDAVtoCSV",
|
|
version="1.0",
|
|
# Modules to import from other scripts:
|
|
packages=find_packages(),
|
|
# Executables
|
|
scripts=["main.py"],
|
|
)
|