-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·35 lines (33 loc) · 1.29 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='neutorch',
version='0.0.1',
description='Deep Learning for brain connectomics using PyTorch',
author='Jingpeng Wu',
author_email='jingpeng.wu@gmail.com',
url='https://github.com/brain-connectome/neutorch',
packages=find_packages(exclude=['bin']),
entry_points='''
[console_scripts]
neutrain-sem=neutorch.train.semantic:main
neutrain-organelle=neutorch.train.organelle:main
neutrain-mito=neutorch.train.mitochondria:main
neutrain-pre=neutorch.train.pre_synapses:main
neutrain-denoise=neutorch.train.denoise:main
neutrain-post=neutorch.train.post_synapses:main
neutrain-affs=neutorch.train.affinity_map:main
neutrain-affs-vol=neutorch.train.whole_brain_affinity_map:main
neutrain-ba=neutorch.train.boundary_aug:main
''',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
"License :: OSI Approved :: Apache Software License",
'Topic :: Communications :: Email',
'Topic :: Software Development :: Bug Tracking',
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
],
)