-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (37 loc) · 1.11 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
from setuptools import setup, find_packages
VERSION = '0.0.1'
with open('README.md', 'r') as f:
long_desc = f.read()
setup(
name='abcv',
version=VERSION,
author='Mark E. Turiansky',
author_email='mturiansky@physics.ucsb.edu',
description=('A python-based crystal viewer built upon the fresnel and '
'pymatgen libraries.'),
license='MIT',
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/mturiansky/abcv',
packages=find_packages(),
install_requires=[
'numpy>=1.17.1',
'pymatgen>=2019.9.16',
'pyside2>=5.13.1',
'scikit-image>=0.15.0',
'click>=7.0'
],
extras_require={
'dev': ['nose2>=0.9.1', 'coverage>=4.5.3', 'pillow>=6.1.0'],
},
entry_points='''
[console_scripts]
abcv=abcv.__main__:cli
''',
keywords=['physics', 'materials', 'science', 'visualization'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
)