-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.06 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.06 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
"""setup.py file."""
from setuptools import setup, find_packages
with open("README.md", "r") as f:
readme = f.read()
requires = [
'requests>=2.27.1',
'setuptools>=39.2.0'
]
setup(
name="zpal",
version="1.0.0",
packages=find_packages(where='src'),
package_dir={"":"src"},
test_suite="test_base",
description="ZPE API Abstraction Layer",
license="MIT",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
url="https://github.com/sandialabs/zpal",
include_package_data=True,
install_requires=requires,
python_requires='>=3.6',
)