-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.79 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
from setuptools import setup, find_packages
from pathlib import Path
from version import __version__ as version
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='antares_hep',
version=version,
license='GNU General Public License v3.0',
description='Automated Numerical To Analytical REconstruction Software',
long_description=long_description,
long_description_content_type='text/markdown',
author='Giuseppe De Laurentis, Daniel Maitre',
author_email='g.dl@hotmail.it',
url='https://github.com/GDeLaurentis/antares',
download_url=f'https://github.com/GDeLaurentis/antares/archive/v{version}.tar.gz',
project_urls={
'Documentation': 'https://gdelaurentis.github.io/antares/',
'Issues': 'https://github.com/GDeLaurentis/antares/issues',
},
keywords=['Analytic Reconstruction', 'Spinor Helicity', 'Scattering Amplitudes', 'QFT'],
packages=find_packages(),
include_package_data=True,
data_files=[],
install_requires=[
'lips',
'pyadic',
'syngular',
# 'linac',
'pyyaml',
'pandas',
'multiset',
'ortools',
],
entry_points={
'console_scripts': [
'SpinorLatexCompiler=antares.scripts.SpinorLatexCompiler:main', # Define the entry point
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)