-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (44 loc) · 1.26 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
46
47
48
49
50
51
52
53
import setuptools
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
name = "fast_wave"
version = "1.5.1"
description = "Package for the calculation of the time-independent wavefunction."
author_email = "matheusgomescord@gmail.com"
url = "https://github.com/pikachu123deimos/fast-wave"
install_requires = [
"llvmlite==0.42.0",
"mpmath==1.3.0",
"numba==0.59.1",
"numpy==1.26.4",
"sympy==1.12",
"cython==3.0.10",
]
test_requires = [
"pytest= ^7.1.2",
]
packages = find_packages(where='src')
package_data = {'fast_wave': ['*.pyd', '*.so']}
classifiers = [
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
]
setuptools.setup(
name=name,
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
description=description,
author=name,
author_email=author_email,
url=url,
install_requires=install_requires,
test_requires=test_requires,
packages=packages,
package_dir={'': 'src'},
package_data=package_data,
classifiers=classifiers
)