13 lines
193 B
Python
13 lines
193 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='icalendar-maker',
|
||
|
version='',
|
||
|
packages=[''],
|
||
|
url='',
|
||
|
license='',
|
||
|
author='francois',
|
||
|
author_email='',
|
||
|
description=''
|
||
|
)
|