-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (46 loc) · 1.47 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
# copyright ############################### #
# This file is part of the Xwakes Package. #
# Copyright (c) CERN, 2024. #
# ######################################### #
from setuptools import setup, find_packages, Extension
from pathlib import Path
#######################################
# Prepare list of compiled extensions #
#######################################
extensions = []
#########
# Setup #
#########
version_file = Path(__file__).parent / 'xwakes/_version.py'
dd = {}
with open(version_file.absolute(), 'r') as fp:
exec(fp.read(), dd)
__version__ = dd['__version__']
setup(
name='xwakes',
version=__version__,
description='Wake and impedance toolbox',
long_description='Toolbox to build and manipulate impedance and wake'
' function models, usable in Xsuite, DELPHI and others',
url='https://xsuite.web.cern.ch/',
author='M. Rognlien, L. Giacomel, D. Amorim, E. Vik, G. Iadarola '
'and N. Mounet',
license='Apache 2.0',
download_url="https://pypi.python.org/pypi/xwakes",
project_urls={
"Bug Tracker": "https://github.com/xsuite/xwakes/issues",
"Source Code": "https://github.com/xsuite/xwakes/",
},
packages=find_packages(),
ext_modules = extensions,
include_package_data=True,
install_requires=[
'numpy>=1.0',
'scipy',
'pyyaml',
'pandas'
],
extras_require={
'tests': ['pytest', 'PyHEADTAIL'],
},
)