-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
61 lines (58 loc) · 2.02 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
54
55
56
57
58
59
60
61
from setuptools import setup
# Inspired from here:
# https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
# https://realpython.com/pypi-publish-python-package/#prepare-your-package-for-publication
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="pyorbit-package",
version='10.9.0',
author="Luca Malavolta",
author_email = 'luca.malavolta@unipd.it',
url = 'https://github.com/LucaMalavolta/PyORBIT',
packages =['pyorbit', 'pyorbit.common', 'pyorbit.classes', 'pyorbit.models', 'pyorbit.samplers', 'pyorbit.subroutines'],
license = 'MIT License',
description ='PyORBIT: a code for exoplanet orbital parameters and stellar activity',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'pyorbit_run=pyorbit.pyorbit_run:pyorbit_run',
'pyorbit_results=pyorbit.pyorbit_results:pyorbit_results'
]
},
zip_safe=False,
install_requires=[
'numpy==1.24.3',
'numba>=0.55.2',
'scipy>=1.8.1,<1.12.0',
'matplotlib>=3.5.2,<3.8',
'astropy>=5.1',
'astroquery>=0.4',
'pyerfa>=2.0',
'argparse',
'emcee>=3.1.2',
'pyyaml',
'h5py',
'tqdm',
'pygtc',
'jaxlib==0.4.31',
'jax ==0.4.31',
'tinygp>=0.3.0',
'ordered-set'
#'schwimmbad'
],
setup_requires=['setuptools']
)