forked from exciting/excitingtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 835 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='excitingtools',
version='1.1.0',
description='Utilities for aiding in the construction of exciting inputs and the postprocessing exciting '
'outputs.',
package_dir={'python': 'excitingtools'},
long_description=long_description,
long_description_content_type='text/markdown',
author='SOL Group',
url="http://exciting.wikidot.com",
author_email='[email protected]', # Add a point of contact
include_package_data=True,
python_requires=">=3.6",
install_requires=['wheel>=0.35.0', 'numpy>=1.14.5', 'matplotlib>=2.2.0'],
extras_require={"ase": ['ase>=3.20.0']}
)