mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
13 lines
404 B
Python
13 lines
404 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='Linktastic',
|
|
version='0.1.0',
|
|
author='Jon "Berkona" Monroe',
|
|
author_email='solipsis.dev@gmail.com',
|
|
py_modules=['linktastic'],
|
|
url="http://github.com/berkona/linktastic",
|
|
license='MIT License - See http://opensource.org/licenses/MIT for details',
|
|
description='Truly platform-independent file linking',
|
|
long_description=open('README.txt').read(),
|
|
)
|