-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 1.21 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
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name='seampy',
version='v1.0.0',
license='GNU General Public License v3.0',
description='Scattering Equations AMplitudes with PYthon',
author='Giuseppe De Laurentis',
author_email='[email protected]',
url='https://github.com/GDeLaurentis/seampy',
download_url='https://github.com/GDeLaurentis/seampy/archive/v1.0.0.tar.gz',
keywords=['Scattering Equations', 'Numerical Amplitudes', 'Tree Level', 'CHY Formalism'],
packages=find_packages(),
install_requires=['numpy',
'mpmath',
'sympy',
'lips'],
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',
],
long_description=long_description,
long_description_content_type='text/markdown'
)