-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 733 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 733 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
31
32
33
34
from setuptools import find_packages, setup
__version__ = '1.0.4'
tests_require = [
"flake8==3.9.2",
"pytest==7.2.2"
]
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='next-app-kit',
author="Next Commerce",
author_email="dev@29next.com",
url='https://github.com/NextCommerceCo/app-kit',
long_description=long_description,
long_description_content_type='text/markdown',
version=__version__,
install_requires=[
"PyYAML>=5.4",
"requests>=2.25",
"python-decouple>=3.6"
],
entry_points={
'console_scripts': [
'nak = nak.nak:main',
],
},
packages=find_packages(),
python_requires='>=3.6'
)