-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (41 loc) · 932 Bytes
/
setup.py
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
from setuptools import setup
setup(
name = "eclip",
version = "0.0.1",
author = "Jenna Elliott",
author_email = "[email protected]",
description = "A proof of principle package that applies machine learning to classify electron density maps",
license = "BSD",
keywords = "electron density classification",
packages=[
'eclip',
'tests'
],
scripts=[
'bin/RunTrain',
'bin/RunPred',
'bin/ConvMAP',
'bin/learn',
'bin/EP_success',
'bin/predic',
'bin/predictest',
'bin/EP_add_new'
],
install_requires=[
'pytest',
'keras',
'tensorflow',
'matplotlib',
'scikit-learn',
'Pillow',
'numpy',
'scipy',
'mrcfile',
'logging',
'argparse'
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
],
)