-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·57 lines (44 loc) · 1.3 KB
/
setup.py
File metadata and controls
executable file
·57 lines (44 loc) · 1.3 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
README = open('README.rst').read()
CHANGELOG = open('CHANGELOG.rst').read()
requirements = [
"numpy",
"matplotlib"
]
test_requirements = [
"tox",
"pytest",
"nose",
"python-coveralls",
]
setuptools.setup(
name="goldilocks",
version="0.1.1",
url="https://github.com/samstudio8/goldilocks",
description="Locating genomic regions that are \"just right\".",
long_description=README + '\n\n' + CHANGELOG,
author="Sam Nicholls",
author_email="sam@samnicholls.net",
maintainer="Sam Nicholls",
maintainer_email="sam@samnicholls.net",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requirements,
entry_points = {
"console_scripts": ["goldilocks=goldilocks.cmd:main"]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
],
test_suite='tests',
tests_require=test_requirements
)