-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 791 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 791 Bytes
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
from setuptools import setup, find_packages
setup(
name='material_database',
version='0.0.1',
packages=find_packages(),
package_data={
'': ['*.txt', '*.dat'],
},
url='http://gitbucket.mbi-berlin.de/steinbac/MBIMaterialDatabase',
install_requires=['numpy',
'pint',
'pytest',
'tabulate',
'bibtexparser>=0.18.2',
'PyYAML>=5.1'],
license='MIT',
author='Felix Steinbach, Daniel Schick, et. al.',
author_email='steinbac@mbi-berlin.de',
description='A material database',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
python_requires='>=3.6',
keywords='material database',
)