-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 981 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 981 Bytes
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
from setuptools import setup, find_packages
# Lê os requisitos
with open("requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
# Lê o Readme
with open("Readme.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="softwareai_engine_library",
version="1.0.21",
description="O pacote python da biblioteca é liberado através do pip",
long_description=long_description,
long_description_content_type="text/markdown",
author="ualers2",
author_email="mediacutsstudio@gmail.com",
url="https://github.com/SoftwareAI-Company/SoftwareAI",
license="Apache-2.0",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)