-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.12 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.12 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
# setup.py (updated to v0.1.1)
from setuptools import setup, find_packages
# read long description from README.md for PyPI
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pyapptest',
version='0.1.1', # bumped version
description='A Streamlit-based API testing tool',
long_description=long_description,
long_description_content_type='text/markdown',
author='RePromptsQuest',
author_email='repromptsquest@gmail.com',
url='https://github.com/reprompts/pyapptest',
packages=find_packages(), # finds backend and cli
py_modules=['ui'], # include the top-level ui.py
install_requires=[
'streamlit>=1.0',
'click>=8.0',
'fastapi>=0.65',
'flask>=2.0',
'django>=3.2',
'faker',
],
entry_points={
'console_scripts': [
'pyapptest=cli.main:main',
],
},
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
)