-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 885 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 885 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
import setuptools
with open("README.md", 'r') as f:
readme_txt = f.read()
setuptools.setup(
name="scitrera-app-framework",
version="0.0.69",
author="Scitrera LLC",
author_email="open-source-team@scitrera.com",
description="Common Application Framework Code and Utilities",
long_description=readme_txt,
long_description_content_type="text/markdown",
url="https://github.com/scitrera/python-app-framework",
packages=setuptools.find_packages(),
install_requires=[
'botwinick-utils>=0.0.20',
'vpd',
'python-json-logger>=4.0.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)