-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (44 loc) · 1.38 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
# copyright ############################### #
# This file is part of the Xpart 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 / 'sussix/_version.py'
dd = {}
with open(version_file.absolute(), 'r') as fp:
exec(fp.read(), dd)
__version__ = dd['__version__']
setup(
name='sussix',
version=__version__,
description='Sussix algorith for frequency analysis',
long_description=('Sussix algorith for frequency analysis'),
#url='https://xsuite.readthedocs.io/',
packages=find_packages(),
ext_modules=extensions,
include_package_data=True,
install_requires=[
'numpy>=1.0',
'pandas',
'numba'
],
author='P. Belanger et al.',
license='Apache 2.0',
download_url="https://pypi.python.org/pypi/sussix",
project_urls={
"Bug Tracker": "https://github.com/xsuite/xsuite/issues",
# "Documentation": 'https://xsuite.readthedocs.io/',
"Source Code": "https://github.com/xsuite/sussix",
},
extras_require={
'tests': ['pytest'],
},
)