12 lines
272 B
Python
12 lines
272 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(name='tww',
|
||
|
version='0.1',
|
||
|
description='Time When and Where',
|
||
|
url='http://gitlab.com/pisquared/tww',
|
||
|
author='Flying Circus',
|
||
|
author_email='',
|
||
|
license='MIT',
|
||
|
packages=[''],
|
||
|
zip_safe=False)
|