Skip to content

Commit

Permalink
Added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
twneale committed Apr 29, 2014
1 parent 7cbd870 commit 57cf1b8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env python

from setuptools import setup

long_description = """Python wrapper for the R pscl package.
"""

appname = "pscl"
version = "0.01"

setup(**{
"name": appname,
"version": version,
"packages": [
'pscl',
],
"author": "Thom Neale",
"author_email": "twneale@gmail.com",
"long_description": long_description,
"description": 'Python wrapper for the R pscl package.',
"license": "MIT",
"url": "http://twneale.github.com/pypscl/",
"platforms": ['any'],
"scripts": [
]
})

0 comments on commit 57cf1b8

Please sign in to comment.