-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (65 loc) · 2.28 KB
/
Copy pathsetup.py
File metadata and controls
71 lines (65 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
"""setuptool based setup script
Adapted from https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name="storalloc",
version="0.0.2",
description="Dynamic Storage Allocator and Simulator",
long_description=long_description, # Optional
long_description_content_type="text/markdown",
url="https://gitlab.inria.fr/Kerdata/kerdata-projects/storalloc",
author="kerdata@INRIA", # Optional
# author_email="",
classifiers=[ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
keywords="simulation, scheduler, storage", # Optional
package_dir={"": "src"}, # Optional
packages=find_packages(where="src"), # Required
python_requires=">=3.7, <4",
install_requires=[
"reportlab>=3.5.57",
"six>=1.15.0",
"scipy>=1.5.4",
"numpy>=1.19.4",
"pandas>=1.0.5",
"matplotlib>=3.3.4",
"kmodpy>=0.1.13",
"Pillow>=8.3.0",
"PyYAML>=5.4.1",
"pyzmq>=22.1.0",
"click>=8.0",
"cerberus>=1.3.4",
"msgpack>=1.0.2",
"bokeh>=2.4.2",
"marshmallow>=3.14",
"marshmallow-enum>=1.5",
# It's a barely stable release candidate, but it's for colored outputs to console...
"sty>=1.0.0rc2",
"simpy>=4.0",
],
extras_require={ # Optional
# Note : only pylint or black are fixed because updates in these packages
# can often cause CI to fail.
"dev": ["black>=21.9b0", "tox", "pylint==2.12.2", "pytest", "pytest-cov"],
},
entry_points={
"console_scripts": [
"storalloc=storalloc.cli:cli",
],
},
)