-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.2 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
import setuptools
with open('README.md', 'r', encoding = 'utf-8') as inpf:
long_description = inpf.read()
setuptools.setup(
name = 'epic_mace',
version = '0.5.0',
description = 'Python library and command-line tool for generation of 3D coordinates for complexes of d-/f-elements',
long_description = long_description,
long_description_content_type = 'text/markdown',
license = 'GPLv3+',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Chemistry',
],
keywords = 'stereomers 3D embedding geometry complex',
url = 'http://github.com/EPiCs-group/mace',
author = 'Ivan Yu. Chernyshov',
author_email = '[email protected]',
packages = setuptools.find_packages(),
entry_points = {
'console_scripts': [
'epic-mace = mace.__main__:main',
'epic-mace-quickstart = mace._cli_quickstart:main'
]
},
install_requires = [
'numpy',
'pyyaml'
],
python_requires = '>=3.7'
)