-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.22 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
import setuptools
with open('README.md', 'r') as fin:
long_description = fin.read()
setuptools.setup(
name='testlodge',
version='0.0.40',
author='Kyle L. Davis',
author_email='[email protected]',
url='https://github.com/AceofSpades5757/testlodge',
project_urls={
'Documentation': 'https://testlodge.readthedocs.io/en/latest/',
'Author': 'https://github.com/AceofSpades5757',
},
license='MIT',
description='Python client library for interacting with TestLodge.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages('src'),
package_dir={'': 'src', 'testlodge': 'src/testlodge'},
test_suite="tests",
python_requires='>=3.8',
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)