initial commit

This commit is contained in:
2020-10-04 01:35:46 +00:00
commit 163fd5e290
7 changed files with 174 additions and 0 deletions

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bits",
version="0.0.1",
author="S Groesz",
description="Make your bits easier to handle",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wolfpackmars2/bits",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved "" MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)