-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (55 loc) · 1.81 KB
/
setup.py
File metadata and controls
60 lines (55 loc) · 1.81 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copyright (c) PEMD development team.
# Distributed under the terms of the MIT License.
"""Setup.py for PEMD."""
import codecs
import os
from setuptools import setup, find_packages
# these things are needed for the README.md show on pypi (if you dont need delete it)
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
VERSION = '1.0.0'
DESCRIPTION = 'a python package for molecular dynamics simulations of polymers electrolytes'
INSTALL_REQUIRES = [
"rdkit == 2024.3.6",
"MDAnalysis>=2.2.0",
"matplotlib",
]
setup(
name="PEMD",
version=VERSION,
author="pemd development team",
author_email="jcy23@mails.tsinghua.edu.cn",
description=DESCRIPTION,
license="MIT",
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
keywords=[
"Gromacs",
"Molecular dynamics",
"polymer",
"quantumn calculations",
"charge",
"materials",
"science",
"solvation",
"diffusion",
"transport",
"conductivity",
"force field"
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
)