-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
52 lines (51 loc) · 1.54 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
# Always prefer setuptools over distutils
from setuptools import setup
setup(
name="paseos",
version="0.2.0",
description="A package which simulates the space environment for operating multiple spacecraft.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/aidotse/paseos",
author="Φ-lab@Sweden",
author_email="[email protected]",
include_package_data=True,
install_requires=[
"dotmap>=1.3.30",
"loguru>=0.6.0",
"matplotlib>=3.6.0",
"numpy==1.23.5",
"pykep>=2.6",
"pyquaternion>=0.9.9",
"scikit-spatial>=6.5.0",
"skyfield>=1.45",
"toml>=0.10.2",
"tqdm>=4.64.1",
"trimesh>=4.0.7",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=[
"paseos",
"paseos.activities",
"paseos.actors",
"paseos.central_body",
"paseos.communication",
"paseos.power",
"paseos.radiation",
"paseos.thermal",
"paseos.utils",
"paseos.visualization",
],
python_requires=">=3.8",
project_urls={
"Source": "https://github.com/aidotse/paseos/",
},
)