-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 676 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 676 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='single_pulse_ml',
version='0.1',
description='Deep learning implementation of single-pulse search',
url='http://github.com/liamconnor/single_pulse_ml',
author='Liam Connor',
author_email='liam.dean.connor@gmail.com',
license='GPL v2.0',
packages=['single_pulse_ml'],
install_requires=[
'numpy',
'scipy',
'h5py',
'matplotlib',
'tensorflow-gpu',
'keras',
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)