add test_toom_cook.py to make importing be tested in CI
[bigint-presentation-code.git] / setup.py
1 from setuptools import setup, find_packages
2 from pathlib import Path
3
4 README = Path(__file__).with_name('README.md').read_text("UTF-8")
5
6 version = '0.0.1'
7
8 install_requires = [
9 "libresoc-nmutil",
10 'libresoc-openpower-isa',
11 ]
12
13 setup(
14 name='libresoc-bigint-presentation',
15 version=version,
16 description="code for big-integer presentation for OpenPOWER Summit 2022",
17 long_description=README,
18 long_description_content_type='text/markdown',
19 classifiers=[
20 "Topic :: Software Development :: Libraries",
21 "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
22 "Programming Language :: Python :: 3",
23 ],
24 author='Jacob Lifshay',
25 author_email='programmerjake@gmail.com',
26 url='https://git.libre-soc.org/?p=bigint-presentation-code.git',
27 license='GPLv3+',
28 packages=find_packages('src'),
29 package_dir={'': 'src'},
30 include_package_data=True,
31 zip_safe=False,
32 install_requires=install_requires,
33 )