-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 736 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 736 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
from setuptools import setup, find_packages
packages = [
'MDAKit',
'MDAKit.lib',
'MDAKit.tools',
'MDAKit.utils',
]
install_requires = [
'tqdm>=4.62.2',
'numpy>=1.21.2',
'pandas>=1.3.2',
'MDAnalysis>=2.0.0',
'mdtraj>=1.9.6',
]
setup(
name = 'MDAKit',
version='1.0.0',
author='Maohua Yang',
author_email='maohuay@hotmail.com',
description=('A kit with lots of tools for Molecular dynamic simulation analysis.'),
license=None,
keywords='molecular dynamic, analysis',
url='https://github.com/Aunity/MDAKit',
packages=find_packages(),
#packages=packages,
entry_points={'console_scripts': [
'mdakit = MDAKit.main:main',
]},
)