-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
55 lines (48 loc) · 1.6 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
53
54
55
# copyright ################################# #
# This file is part of the Xfields Package. #
# Copyright (c) CERN, 2021. #
# ########################################### #
from setuptools import setup, find_packages, Extension
from pathlib import Path
#######################################
# Prepare list of compiled extensions #
#######################################
extensions = []
#########
# Setup #
#########
version_file = Path(__file__).parent / 'xfields/_version.py'
dd = {}
with open(version_file.absolute(), 'r') as fp:
exec(fp.read(), dd)
__version__ = dd['__version__']
setup(
name='xfields',
version=__version__,
description='Field Maps and Particle In Cell',
long_description=("Python package for the computation of fields generated "
"by particle ensembles in accelerators.\n\n"
"This package is part of the Xsuite collection."),
url='https://xsuite.readthedocs.io/',
packages=find_packages(),
ext_modules = extensions,
include_package_data=True,
install_requires=[
'numpy>=1.0',
'scipy',
'pandas',
'xobjects>=0.0.4',
'xtrack>=0.0.1',
],
author='G. Iadarola et al.',
license='Apache 2.0',
download_url="https://pypi.python.org/pypi/xfields",
project_urls={
"Bug Tracker": "https://github.com/xsuite/xsuite/issues",
"Documentation": 'https://xsuite.readthedocs.io/',
"Source Code": "https://github.com/xsuite/xfields",
},
extras_require={
'tests': ['pytest', 'h5py'],
},
)