This repository was archived by the owner on Oct 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (44 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (44 loc) · 1.27 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
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from lomapy.recursos.sdk import sdk
descricao = 'Lomapy'
with open("README.md") as f:
descricao_longa = f.read()
autor = 'Alan Taranti'
autor_email = 'alan.taranti@gmail.com'
testing_extras = [
'pytest',
'pytest-cov',
"python-dotenv"
]
setup(
name='lomapy',
version=sdk.VERSAO,
author=autor,
author_email=autor_email,
packages=find_packages(),
license='MIT',
description=descricao,
long_description=descricao_longa,
long_description_content_type='text/markdown',
url='https://github.com/AlanTaranti/Lomapy',
keywords='lomapy, lomadee',
include_package_data=True,
zip_safe=False,
install_requires=['requests'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Environment :: Web Environment',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
tests_require=['pytest'],
extras_require={
'testing': testing_extras,
},
)