-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
30 lines (25 loc) · 923 Bytes
/
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
# coding: utf-8
# Copyright (c) Matscholar Development Team.
# Distributed under the terms of the MIT License.
from setuptools import setup, find_packages
import sys
import platform
extra_link_args = []
if sys.platform.startswith('win') and platform.machine().endswith('64'):
extra_link_args.append('-Wl,--allow-multiple-definition')
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='matscholar',
version='0.0.3',
description='matscholar: a Python library for interacting with the Materials Scholar database.',
long_description=readme,
author='Materials Scholar Development Team',
url='https://github.com/materialsintelligence/matscholar',
license=license,
packages=find_packages(),
install_requires=["numpy", "requests"]
)