Skip to content

Commit

Permalink
add setup.py for easy_install and pip and change gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
stanfeldman committed Dec 15, 2011
1 parent 62ab199 commit 13592f8
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,19 @@ tests/*/*.py.js
tests/*.err
tests/*.out
.d8_history

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ People who contributed by sending at least one patch:
Baniel <edn@emolson.net>
Jonathan Fine <jfine@pytex.org>
Pablo Angulo <pablo.angulo@uam.es>
Stanislav Feldman <stanislavfeldman@gmail.com>
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from distutils.core import setup
try:
from setuptools import setup
except:
pass

setup(
name = "pyjaco",
version = "1.0.0",
author = "Mateusz Paprocki",
author_email = "mattpap@gmail.com",
description = ("Python to JavaScript translator"),
url = "http://pyjaco.org",
keywords = "javascript translator compiler",
packages=["pyjaco", "pyjaco.compiler"],
)

0 comments on commit 13592f8

Please sign in to comment.