-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 839 Bytes
/
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
# author: Drew Botwinick, Botwinick Innovations
# license: 3-clause BSD
import setuptools
with open("README.md", 'r') as f:
readme_txt = f.read()
setuptools.setup(
name="botwinick_utils",
version="0.0.20",
author="Drew Botwinick",
author_email="[email protected]",
description="Assorted Utilities and platform code",
long_description=readme_txt,
long_description_content_type="text/markdown",
url="https://github.com/dbotwinick/botwinick_utils",
packages=setuptools.find_packages(),
install_requires=[],
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',
)