-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
35 lines (34 loc) · 1007 Bytes
/
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
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 database capacity on a cloud",
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 :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": []},
include_package_data=True,
package_data={
"": [
"hardware/profiles/profiles.txt",
"hardware/profiles/shapes/*.json",
"hardware/profiles/pricing/**/*.json",
]
},
)