This commit is contained in:
S Groesz 2020-10-28 06:31:17 +00:00
parent 63929e6f5b
commit 42bb3f13e6
4 changed files with 18 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
__pycache__
*.bak
*.swp
build/
dist/

View File

@ -7,15 +7,27 @@ setuptools.setup(
name="bits",
version="1.0.0",
author="S Groesz",
description="Make your bits easier to handle",
description="Provide additional methods for working with binary data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wolfpackmars2/bits",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved "" MIT License",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
py_modules=['bits'],
package_dir={'': 'src'},
test_suite='tests',
extras_require={
'test': ['coverage'],
},
project_urls={
'Source': 'http://git.groesz.org/wp/bits/',
},
)

View File

@ -1,7 +1,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
'..')))
'../src')))
from bits import Bit
from bits import Bits