-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (39 loc) · 1.51 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
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='lips',
version=version,
license='GNU General Public License v3.0',
description='Lorentz Invariant Phase Space',
long_description=long_description,
long_description_content_type='text/markdown',
author='Giuseppe De Laurentis',
author_email='g.dl@hotmail.it',
url='https://github.com/GDeLaurentis/lips',
download_url=f'https://github.com/GDeLaurentis/lips/archive/v{version}.tar.gz',
project_urls={
'Documentation': 'https://gdelaurentis.github.io/lips/',
'Issues': 'https://github.com/GDeLaurentis/lips/issues',
},
keywords=['lips', 'Lorentz Invariant Phase Space', 'Spinor Helicity'],
packages=find_packages(),
include_package_data=True,
install_requires=['numpy',
'mpmath',
'sympy',
'pyadic',
'syngular'],
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',
],
)