-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (28 loc) · 785 Bytes
/
setup.py
File metadata and controls
38 lines (28 loc) · 785 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
38
#!/usr/bin/env python2
from setuptools import setup, find_packages
import simrrls
requirements = [
'numpy>1.7',
]
setup(
name="simrrls",
version=simrrls.__version__,
url="https://github.com/dereneaton/simrrls",
author=simrrls.__author__,
author_email=simrrls.__contact__,
description="simulating RADseq data sets",
long_description=open('README.rst').read(),
packages=find_packages(),
install_requires=[requirements],
entry_points={
'console_scripts': [
'simrrls = simrrls.__main__:main',
],
},
license='GPL',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)