Newer
Older
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
from os import path
from setuptools import setup
# the stereo version
__version__ = "8.0.0-alpha"
# get the absolute path of this project
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
# the standard setup info
setup(
name="corsika",
version=__version__,
description="A Python package for working with CORSIKA 8",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika",
author="CORSIKA 8 Collaboration",
author_email="corsika-devel@lists.kit.edu",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords=["cosmic ray", "physics", "astronomy", "simulation"],
packages=["corsika"],
python_requires=">=3.6*, <4",
install_requires=["numpy", "pyyaml",],
extras_require={
"test": [
"pytest",
"black",
"mypy",
"isort",
"coverage",
"pytest-cov",
"flake8",
],
},
scripts=[],
project_urls={"code": "https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika"},
include_package_data=True,
)