-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (35 loc) · 906 Bytes
/
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
from setuptools import setup, find_packages
import pyiota
INSTALL_REQUIRES = [
'numpy>=1.13.3',
'pandas>=1.0',
'pydantic>=1.10',
'scipy',
]
EXTRAS_REQUIRES = {
"develop": [
"pytest>=6.0",
]
}
LICENSE = "GNU General Public License v3 or later (GPLv3+)"
DESCRIPTION = 'Toolbox for computational and experimental accelerator physics'
CLASSIFIERS = [
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
setup(
name='pyiota',
version=pyiota.__version__,
author='Nikita Kuklev',
author_email='',
description=DESCRIPTION,
license=LICENSE,
url="https://github.com/nikitakuklev/pyIOTA",
packages=find_packages(),
platforms="any",
install_requires=INSTALL_REQUIRES,
python_requires=">=3.9",
extras_require=EXTRAS_REQUIRES
)