Initial import.
This commit is contained in:
commit
925b9ec0a5
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
*.pyc
|
||||||
|
*swp
|
||||||
|
*ly*egg*
|
0
hy/__init__.py
Normal file
0
hy/__init__.py
Normal file
22
setup.py
Executable file
22
setup.py
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
long_description = open('README.md', 'r').read()
|
||||||
|
appname = "hy"
|
||||||
|
version = "0.0.1"
|
||||||
|
|
||||||
|
setup(**{
|
||||||
|
"name": appname,
|
||||||
|
"version": version,
|
||||||
|
"packages": [
|
||||||
|
'monomoy'
|
||||||
|
],
|
||||||
|
"author": "Paul Tagliamonte",
|
||||||
|
"author_email": "paultag@debian.org",
|
||||||
|
"long_description": long_description,
|
||||||
|
"description": 'does some stuff with things & stuff',
|
||||||
|
"license": "Expat",
|
||||||
|
"url": "",
|
||||||
|
"platforms": ['any']
|
||||||
|
})
|
Loading…
x
Reference in New Issue
Block a user