initial setup infrastructure
authorTero Marttila <terom@paivola.fi>
Tue, 19 Feb 2013 19:42:29 +0200
changeset 0 b48dd0a9d7f6
child 1 ce931075b69e
initial setup infrastructure
.hgignore
README
pvl/__init__.py
setup.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Tue Feb 19 19:42:29 2013 +0200
@@ -0,0 +1,12 @@
+syntax: regexp
+
+# tempfiles
+\.pyc$
+\.sw[op]$
+
+# generated files
+^dist/
+^MANIFEST$
+
+# data
+^(var)/
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README	Tue Feb 19 19:42:29 2013 +0200
@@ -0,0 +1,1 @@
+Shared Python packages for various pvl-* sub-projects.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pvl/__init__.py	Tue Feb 19 19:42:29 2013 +0200
@@ -0,0 +1,2 @@
+
+__version__ = '0.1'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Tue Feb 19 19:42:29 2013 +0200
@@ -0,0 +1,27 @@
+from distutils.core import setup
+
+from glob import glob
+
+from pvl import __version__
+
+setup(
+    name            = 'pvl-common',
+    version         = __version__,
+
+    url             = 'http://verkko.paivola.fi/hg/pvl-common/',
+    author          = 'Tero Marttila',
+    author_email    = 'terom@paivola.fi',
+
+    # internal dependencies
+    install_requires    = [ ],
+
+    # code
+    packages        = [
+        'pvl', 
+    ],
+    
+    # binaries
+    scripts         = [ ],
+
+    data_files      = [ ],
+)