[python-dtcwt] 01/497: initial version

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Tue Jul 21 18:05:41 UTC 2015


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch debian/sid
in repository python-dtcwt.

commit e7edda5437f4259e63a2fbb8fa0439aeb16bdaf7
Author: Rich Wareham <rjw57 at cam.ac.uk>
Date:   Tue Aug 6 12:11:39 2013 +0100

    initial version
---
 .gitignore        |  1 +
 README.rst        |  0
 dtcwt/__init__.py |  0
 setup.py          | 28 ++++++++++++++++++++++++++++
 4 files changed, 29 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0d20b64
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.pyc
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..e69de29
diff --git a/dtcwt/__init__.py b/dtcwt/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..837641a
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,28 @@
+import os
+from setuptools import setup, find_packages
+
+# Utility function to read the README file.
+# Used for the long_description.  It's nice, because now 1) we have a top level
+# README file and 2) it's easier to type in the README file than to put a raw
+# string in below ...
+def read(fname):
+    return open(os.path.join(os.path.dirname(__file__), fname)).read()
+
+setup(
+    name = "dtcwt",
+    version = "0.0.1",
+    author = "Rich Wareham",
+    author_email = "rich.dtcwt at richwareham.com",
+    description = ("An demonstration of how to create, document, and publish "
+                                   "to the cheese shop a5 pypi.org."),
+    license = "BSD",
+    keywords = "example documentation tutorial",
+    url = "http://packages.python.org/an_example_pypi_project",
+    packages=find_packages(),
+    long_description=read('README.rst'),
+    classifiers=[
+        "Development Status :: 3 - Alpha",
+        "Topic :: Utilities",
+        "License :: OSI Approved :: BSD License",
+    ],
+)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-dtcwt.git



More information about the debian-science-commits mailing list