forked from MichielTukker/WandaToolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.51 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="wandatoolbox", # Replace with your own username
version="0.1.0",
author="Michiel Tukker",
author_email="[email protected]",
description="Python toolbox for Wanda",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MichielTukker/WandaToolbox",
# packages=find_packages(),
packages=find_packages(where='src'),
package_dir={'': 'src'},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
],
install_requires=[
"pywanda>=0.4.1",
"matplotlib>=3.1.3",
"pandas>=1.0.1",
"numpy>=1.18.1"
],
extras_require={
"dev": [
"pytest==6.2.5",
"bump2version==1.0.1",
]
},
python_requires='>=3.6',
)