-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 930 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 930 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
from setuptools import setup, find_packages
import os, sys
sys.path.insert(0, f'{os.path.dirname(__file__)}/nemotoc')
setup(
name = 'nemotoc',
version = '1.0.0b0',
description='neighboring molecule topology clustering(NEMO-TOC)',
author='Wenhong Jiang',
author_email='jiangwh@pku.edu.cn',
url='https://github.com/GuoQLabPKU/polysomeTracking',
scripts=['bin/nemotocRun'],
entry_points = {
'console_scripts':['nemotocGen=nemotoc.__main__:genConf'],
},
packages=find_packages(),
include_package_data = True,
install_requires = [
'numpy',
'pandas',
'matplotlib',
'cupy',
'pytest',
'networkx',
'seaborn',
'dill',
'alive-progress',
'psutil' ],
python_requires = '>=3'
)