[med-svn] [fastaq] 01/01: adding setup.py, but I dont think I should. I might take it out later
Jorge Soares
jssoares-guest at moszumanska.debian.org
Wed Oct 8 14:27:35 UTC 2014
This is an automated email from the git hooks/post-receive script.
jssoares-guest pushed a commit to branch master
in repository fastaq.
commit f41fa4882e6ab08bd32d737f3186e88060a204e0
Author: Jorge Soares <j.s.soares at gmail.com>
Date: Wed Oct 8 15:36:09 2014 +0100
adding setup.py, but I dont think I should. I might take it out later
---
setup.py | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..1a4976d
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+import os
+import glob
+from setuptools import setup, find_packages
+
+def read(fname):
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
+
+setup(
+ name='Fastaq',
+ version='1.5.0',
+ description='Scripts to manipulate FASTA and FASTQ files, plus API for developers',
+ long_description=read('README.md'),
+ packages = find_packages(),
+ author='Martin Hunt',
+ author_email='mh12 at sanger.ac.uk',
+ url='https://github.com/martinghunt/Fastaq',
+ scripts=glob.glob('scripts/*'),
+ test_suite='nose.collector',
+ install_requires=['nose >= 1.3'],
+ license='GPLv3',
+)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/fastaq.git
More information about the debian-med-commit
mailing list