-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (44 loc) · 1.11 KB
/
setup.py
File metadata and controls
57 lines (44 loc) · 1.11 KB
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
52
53
54
55
56
57
from setuptools import setup, find_packages
from pathlib import Path
from stat_plot import __version__
# get the description from README.md
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
# specify the dependencies
dependency = [
'numpy>=1.22.4',
'matplotlib>=3.5.3',
'scikit-learn>=1.3.0',
'einops>=0.6.1'
]
extra_save = [
]
extra_show = [
]
extra_dev = [
*dependency,
*extra_save,
*extra_show
]
setup(
name='stat-classification-plot',
version=__version__,
url='https://github.com/Paramuths/stat-classification-plot-package',
author='Paramuth Samuthrsindh',
author_email='paramuths@gmail.com',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
# dependency installed in general
install_requires=[
*dependency
],
# dependency installed with specific keywordd
extras_require={
'dev': extra_dev,
},
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
)