-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (34 loc) · 1.31 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
41
42
"""Module setup."""
import os
from setuptools import find_packages, setup
PACKAGE_NAME = "aries_cloudcontroller"
with open(os.path.abspath("README.md"), "r") as fh:
long_description = fh.read()
def parse_requirements(filename: str):
"""Load requirements from a pip requirements file."""
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version="1.2.0-20241205",
description="A simple python client for controlling an ACA-Py agent",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/didx-xyz/aries-cloudcontroller-python",
packages=find_packages(),
include_package_data=True,
package_data={
"aries_cloudcontroller": [
"requirements.txt",
]
},
tests_require=parse_requirements("requirements.dev.txt"),
install_requires=parse_requirements("requirements.txt"),
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)