package
This commit is contained in:
parent
63929e6f5b
commit
42bb3f13e6
|
@ -1,3 +1,5 @@
|
||||||
__pycache__
|
__pycache__
|
||||||
*.bak
|
*.bak
|
||||||
*.swp
|
*.swp
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
|
18
setup.py
18
setup.py
|
@ -7,15 +7,27 @@ setuptools.setup(
|
||||||
name="bits",
|
name="bits",
|
||||||
version="1.0.0",
|
version="1.0.0",
|
||||||
author="S Groesz",
|
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=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/wolfpackmars2/bits",
|
url="https://github.com/wolfpackmars2/bits",
|
||||||
packages=setuptools.find_packages(),
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved "" MIT License",
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
|
"License :: OSI Approved :: MIT License",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
],
|
],
|
||||||
python_requires='>=3.6',
|
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/',
|
||||||
|
},
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
|
||||||
'..')))
|
'../src')))
|
||||||
|
|
||||||
from bits import Bit
|
from bits import Bit
|
||||||
from bits import Bits
|
from bits import Bits
|
||||||
|
|
Loading…
Reference in New Issue