-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (34 loc) · 1.19 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
#!/usr/bin/env python
from skbuild import setup
with open('Readme.md') as fh:
readme = fh.read()
setup(
name='freddi',
version='2.0.0',
url='http://xray.sai.msu.ru/~malanchev/freddi/',
license='GPLv3',
author='Konstantin Malanchev',
author_email='malanchev@sai.msu.ru',
description='Compute FRED light curves of LMXBs outbursts',
long_description=readme,
long_description_content_type='text/markdown',
package_dir={'': 'python'},
packages=['freddi'],
install_requires=['numpy'],
setup_requires=['numpy'],
python_requires='>=3.7',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Physics',
],
keywords='science astrophysics accretion',
)