-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
39 lines (36 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('dtk/version.py').read())
setup(name='DynamicistToolKit',
author='Jason K. Moore',
author_email='moorepants@gmail.com',
version=__version__,
url="http://github.com/moorepants/DynamicistToolKit",
description='Various tools for theoretical and experimental dynamics.',
license='UNLICENSE.txt',
packages=find_packages(),
# Minimum dependency versions set to match Ubuntu 22.04 packages.
install_requires=[
'matplotlib>=3.5.1',
'numpy>=1.21.5',
'scipy>=1.8.0',
],
extras_require={
'doc': [
'sphinx>=4.3.2',
'numpydoc>=1.2',
],
},
tests_require=['pytest>=6.2.5'],
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Physics',
])