-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.49 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
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-results',
version=version,
license='GNU General Public License v3.0',
license_file='LICENSE.txt',
description='Spinor Helicity Amplitudes',
long_description=long_description,
long_description_content_type='text/markdown',
author='Giuseppe De Laurentis',
author_email='[email protected]',
url='https://github.com/GDeLaurentis/antares-results',
download_url=f'https://github.com/GDeLaurentis/antares-results/archive/v{version}.tar.gz',
project_urls={
'Documentation': 'https://gdelaurentis.github.io/antares-results/',
'Issues': 'https://github.com/GDeLaurentis/antares-results/issues',
},
keywords=['Spinor Helicity', 'Scattering Amplitudes'],
packages=find_packages(),
include_package_data=True,
install_requires=['lips',
'recommonmark'],
classifiers=[
'Development Status :: 4 - Beta',
'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',
],
)