bits/setup.py

34 lines
1.0 KiB
Python
Raw Normal View History

2020-10-03 20:35:46 -05:00
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
2020-11-18 22:23:42 -06:00
name="binary-bits",
2021-04-13 21:07:16 -05:00
version="1.1.0",
2020-10-03 20:35:46 -05:00
author="S Groesz",
2020-10-28 01:31:17 -05:00
description="Provide additional methods for working with binary data",
2020-10-03 20:35:46 -05:00
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wolfpackmars2/bits",
classifiers=[
2020-10-28 01:31:17 -05:00
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
2020-10-03 20:35:46 -05:00
"Programming Language :: Python :: 3",
2020-10-28 01:31:17 -05:00
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
2020-10-03 20:35:46 -05:00
"Operating System :: OS Independent",
],
python_requires='>=3.6',
2020-10-28 01:31:17 -05:00
py_modules=['bits'],
package_dir={'': 'src'},
test_suite='tests',
extras_require={
'test': ['coverage'],
},
project_urls={
'Source': 'http://git.groesz.org/wp/bits/',
},
2020-10-03 20:35:46 -05:00
)