-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 961 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
36
"""Package with RH test.
Boilerplate from: https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='rh_test',
version='1.0.0',
description='Assignment for RH',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/guioliveirabh/rh_test',
author='Guilherme',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.6, <4',
zip_safe=False,
install_requires=['flask==2.0.1', 'flask_restful==0.3.9'],
extras_require={
'test': ['coverage==5.5', 'pylint==2.10.2'],
},
package_data={
'rh_test': ['resources/colors.json'],
},
entry_points={
'console_scripts': [
'rh_test=rh_test.main:main',
],
}
)