-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (42 loc) · 1.28 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
43
44
45
46
47
"""App para crear un sitio de noticias"""
from setuptools import find_packages, setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='ybf-constructs',
version='0.0.7',
url='https://github.com/ybenitezf/s3site',
license='GPL',
author='Yoel Benítez Fonseca',
author_email='[email protected]',
description='My own set of of aws CDK constructs',
long_description=read('README.md'),
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
setup_requires=['pytest-runner'],
tests_require=[
'pytest',
'pytest-cov'
],
install_requires=[
"python-dotenv",
"aws-cdk-lib>=2.0.0rc9",
"constructs>=10.0.0"
],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Typing :: Typed",
],
)