-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (29 loc) · 756 Bytes
/
setup.py
File metadata and controls
38 lines (29 loc) · 756 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
import setuptools
setuptools.setup(
name='peaks',
version='0.1.2',
url='https://github.com/rgiessmann/peaks',
author='Robert Giessmann',
author_email='r.giessmann@tu-berlin.de',
description='Data analysis pipeline for DNA footprinting data.',
long_description=open('README.md').read(),
packages=setuptools.find_packages(exclude=['test', 'test.*']),
platforms='any',
include_package_data=True,
package_data = {
'scripts' : ['*']
},
install_requires=[
'matplotlib',
'numpy',
'pandas',
'scipy',
'statsmodels'
],
entry_points={
'console_scripts': [
'annotate=peaks.annotate:main',
],
},
classifiers = [],
)