Skip to content

Commit

Permalink
begining to convert to pip-style install
Browse files Browse the repository at this point in the history
  • Loading branch information
Augustine Dunn committed Apr 30, 2015
1 parent 65077a9 commit 16d6afd
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 1 deletion.
37 changes: 36 additions & 1 deletion .gitignore
@@ -1 +1,36 @@
*.pyc
*.py[cod]

# C extensions
*.so

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

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
nosetests.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject
32 changes: 32 additions & 0 deletions README.rst
@@ -0,0 +1,32 @@
pyrad
=====


Assembly and analysis of RADseq data sets

Tutorials
---------

Detailed information and a number of example tutorials are
available `here <http://www.dereneaton.com/software/pyrad/>`_.


Downloads
---------

Stable release versions can be downloaded `here <https://github.com/dereneaton/pyrad/releases>`_, or you can clone the development version using git.


Python Requirements
^^^^^^^^^^^^^^^^^^^

* numpy
* scipy

Licence
-------

Authors
-------

`pyrad` was written by `Deren Eaton <deren.eaton@yale.edu>`_.
37 changes: 37 additions & 0 deletions setup.py
@@ -0,0 +1,37 @@
import setuptools

requirements = [
'numpy',
'scipy',
]

setuptools.setup(
name="pyrad",
version="3.0.5",
url="https://github.com/dereneaton/pyrad",

author="Deren Eaton",
author_email="deren.eaton@yale.edu",

description="Assembly and analysis of RADseq data sets",
long_description=open('README.rst').read(),

packages=setuptools.find_packages(),

install_requires=[requirements],


entry_points={
'console_scripts': [
'pyRAD = pyRAD:main',
],
},

license='GPL',

classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)
Empty file added src/__init__.py
Empty file.
6 changes: 6 additions & 0 deletions tox.ini
@@ -0,0 +1,6 @@
[tox]
envlist=py27,py34

[testenv]
commands=py.test pyrad
deps=pytest

0 comments on commit 16d6afd

Please sign in to comment.