-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (31 loc) · 899 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
40
41
from setuptools import setup, find_packages
from dpg11_pylib import __version__
# Define preset for extra developement dependencies
extra_test = [
'pytest>=3',
'pytest-cov>=1'
]
extra_dev = [
*extra_test,
]
setup(
name='dpg11_pylib',
version=__version__,
description='Python library for the DPG11 data generator',
url='https://github.com/ethan-r-hansen/dpg11_pylib',
author='Ethan R. Hansen',
author_email='[email protected]',
py_modules=find_packages(),
install_requires=[
'numpy>=1.23.0',
'matplotlib>=3.7.4',
''
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)