initial commit
[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-openpower-isa',
10 ]
11
12 setup(
13 name='libresoc-bigint-presentation',
14 version=version,
15 description="code for big-integer presentation for OpenPOWER Summit 2022",
16 long_description=README,
17 long_description_content_type='text/markdown',
18 classifiers=[
19 "Topic :: Software Development :: Libraries",
20 "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
21 "Programming Language :: Python :: 3",
22 ],
23 author='Jacob Lifshay',
24 author_email='programmerjake@gmail.com',
25 url='https://git.libre-soc.org/?p=bigint-presentation-code.git',
26 license='GPLv3+',
27 packages=find_packages('src'),
28 package_dir={'': 'src'},
29 include_package_data=True,
30 zip_safe=False,
31 install_requires=install_requires,
32 )