-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.1 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.1 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
import json
from setuptools import setup
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
with open('package.json', 'r') as package_file:
package_dict = json.loads(package_file.read().strip())
version = package_dict['version']
setup(
name='rest_api_tester',
version=version,
author='Alex Schimpf',
author_email='aschimpf1@gmail.com',
description='Rest API tester',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/alexschimpf/python-rest-api-tester',
packages=[
'',
'rest_api_tester',
'rest_api_tester.parser',
'rest_api_tester.client'
],
package_data={
'': ['README.md', 'package.json'],
'rest_api_tester': ['py.typed']
},
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
python_requires='>=3.7'
)