-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
35 lines (31 loc) · 1.05 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
if __name__ == "__main__":
setuptools.setup(
name='mcu',
version="1.0.1",
description='Modeling and Crystallographic Utilities',
project_description='A package for periodic wavefunction and crystallography analysis. mcu is designed to support large scale analysis and topological descriptions for periodic wavefunction.',
author='Hung Pham',
author_email='[email protected]',
url="https://github.com/hungpham2017/mcu",
license='Apache 2.0',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.15.2',
'scipy>=1.1.0',
'matplotlib>=3.0.1',
'spglib>=1.15.1',
],
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8',
'tox',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=True,
)