-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 742 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 742 Bytes
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
from setuptools import setup, find_packages, Extension
#######################################
# Prepare list of compiled extensions #
#######################################
extensions = []
#########
# Setup #
#########
setup(
name='PyPLINE',
version='0.0.1',
description='Pipelined paralelisation based on MPI combining tracking capabilities of PyHEADTAIL and xsuite',
url='https://github.com/PyCOMPLETE/PyPLINE',
author='Xavier Buffat',
packages=find_packages(), # finds all the packages in the folder
ext_modules = extensions,
install_requires=[
'numpy>=1.0',
'xobjects>=0.0.4',
'xtrack>=0.0.1',
'xfields>=0.0.1',
'mpi4py',
'PyHEADTAIL'
]
)