-
Notifications
You must be signed in to change notification settings - Fork 64
/
setup.py
44 lines (35 loc) · 1.13 KB
/
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
43
44
from setuptools import setup, find_packages
name = 'topaz-em'
version = '0.2.5'
description = 'Particle picking with positive-unlabeled CNNs'
long_description = 'Particle picking software for single particle cryo-electron microscopy using convolutional neural networks and positive-unlabeled learning. Includes methods for micrograph denoising.'
keywords = 'cryoEM particle-picking CNN positive-unlabeled denoise topaz'
url = 'https://github.com/tbepler/topaz'
author = 'Tristan Bepler'
author_email = 'tbepler@mit.edu'
license = 'GPLv3'
setup(
name = name,
version=version,
description=description,
long_description=long_description,
keywords=keywords,
url=url,
author=author,
author_email=author_email,
license=license,
packages=find_packages(),
#package_dir = {'': 'topaz'},
entry_points = {'console_scripts': ['topaz = topaz.main:main']},
include_package_data = True,
install_requires=[
'torch>=1.0.0',
'torchvision',
'numpy>=1.11',
'pandas',
'scikit-learn>=0.19.0',
'scipy>=0.17.0',
'pillow>=6.2.0',
'future',
],
)