-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 967 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='sparkx',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
"particle>=0.23.0",
"numpy>=1.23.5",
"scipy>=1.10.1",
"fastjet>=3.4.2.1",
"matplotlib>=3.7.1",
],
version='2.0.0',
description='Software Package for Analyzing Relativistic Kinematics in Collision eXperiments',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author='Nils Sass, Hendrik Roch, Niklas Götz, Renata Krupczak, Lucas Constantin',
author_email="[email protected], [email protected], [email protected], [email protected], [email protected]",
url="https://smash-transport.github.io/sparkx/",
download_url="https://github.com/smash-transport/sparkx",
license='GNU General Public License v3.0',
include_package_data = True
)