25 lines
546 B
Python
25 lines
546 B
Python
#!/usr/bin/env python
|
|
"""
|
|
An installation script for _ using distutils.
|
|
"""
|
|
|
|
from distutils.core import setup
|
|
|
|
with open("README.md") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name = '_',
|
|
description = 'Allows you to write Python scripts using _ exclusively',
|
|
author = "Veit Heller",
|
|
author_email = "veit@veitheller.de",
|
|
version = "1.0 Stable",
|
|
long_description = long_description,
|
|
url = "https://github.com/hellerve/_",
|
|
packages = ['_',],
|
|
license = "MIT",
|
|
platforms = ['Linux', 'OS X', 'Windows']
|
|
)
|
|
|
|
|