-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
45 lines (40 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import versioneer
def readme():
with open('README.rst', encoding='utf-8') as file_:
return file_.read()
setup(
name="gftool",
version=versioneer.get_version(),
description="Collection of commonly used Green's functions and utilities",
long_description=readme(),
keywords=["Green's function", "physics"],
python_requires=">=3.7",
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Physics',
],
url="https://github.com/DerWeh/gftools",
project_urls={
"ReadTheDocs": "https://gftools.readthedocs.io/",
"Source Code": "https://github.com/DerWeh/gftools",
},
author="Weh",
author_email="[email protected]",
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'mpmath'
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'hypothesis', 'hypothesis_gufunc'],
)