-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
54 lines (48 loc) · 1.54 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
# copyright ############################### #
# This file is part of the Xtrack 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 / 'xtrack/_version.py'
dd = {}
with open(version_file.absolute(), 'r') as fp:
exec(fp.read(), dd)
__version__ = dd['__version__']
setup(
name='xtrack',
version=__version__,
description='Tracking library for particle accelerators',
long_description='Tracking library for particle accelerators',
url='https://xsuite.readthedocs.io/',
author='G. Iadarola et al.',
license='Apache 2.0',
download_url="https://pypi.python.org/pypi/xtrack",
project_urls={
"Bug Tracker": "https://github.com/xsuite/xsuite/issues",
"Documentation": 'https://xsuite.readthedocs.io/',
"Source Code": "https://github.com/xsuite/xtrack",
},
packages=find_packages(),
ext_modules = extensions,
include_package_data=True,
install_requires=[
'numpy>=1.0',
"pandas>=2.0",
'scipy',
'tqdm',
'xobjects',
'xdeps'
],
extras_require={
'tests': ['cpymad', 'nafflib', 'PyHEADTAIL', 'pytest', 'pytest-mock'],
'notebooks': ['jupyter', 'ipympl', 'xplt'],
},
)