-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
40 lines (39 loc) · 1.18 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
import setuptools
setuptools.setup(
name="service-capacity-modeling",
author="Joseph Lynch",
author_email="[email protected]",
versioning="distance",
setup_requires="setupmeta",
description="Contains utilities for modeling capacity for pluggable workloads",
packages=setuptools.find_packages(exclude=("tests*", "notebooks*")),
install_requires=[
"pydantic>2.0",
"scipy",
"numpy",
'importlib_resources; python_version < "3.7"',
"isodate",
],
extras_require={
"aws": ["boto3"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"auto-shape = service_capacity_modeling.tools.auto_shape:main",
"fetch-pricing = service_capacity_modeling.tools.fetch_pricing:main",
]
},
include_package_data=True,
package_data={
"": [
"hardware/profiles/profiles.txt",
"hardware/profiles/shapes/**/*.json",
"hardware/profiles/pricing/**/*.json",
]
},
)