-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (27 loc) · 738 Bytes
/
setup.py
File metadata and controls
37 lines (27 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import setuptools
requirements = [
'numpy',
'scipy',
]
setuptools.setup(
name="pyrad",
version="3.0.66",
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.pyRAD:main',
],
},
license='GPL',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)