22 lines
451 B
Python
22 lines
451 B
Python
#!/usr/bin/env python
|
|
"""
|
|
An installation script for _ using distutils.
|
|
"""
|
|
|
|
from distutils.core import setup
|
|
import _
|
|
|
|
setup(
|
|
name = '_',
|
|
description = 'Allows you to write Python scripts using exclusively _',
|
|
author = "Veit Heller",
|
|
author_email = "veit.heller@htw-berlin.de",
|
|
version = "0.1.0",
|
|
url = "https://git.com/hellerve/_",
|
|
packages = ['_',],
|
|
license = "MIT",
|
|
platforms = ['Linux', 'OS X', 'Windows']
|
|
)
|
|
|
|
|