31 from shutil
import copyfile
33 with open(
"README_pypi.md",
"r", encoding=
"utf-8")
as fh:
34 long_description = fh.read()
38 version_path = os.path.dirname(os.path.abspath(__file__))+
"/cFSPlib/version.txt"
39 with open(version_path,
"r")
as fh:
41 __version__ = line.rstrip(
"\n")
48 author=
"Dionysios Diamantopoulos",
49 author_email=
"did@zurich.ibm.com",
50 description=
"The cloudFPGA Support Package",
51 long_description=long_description,
52 long_description_content_type=
"text/markdown",
53 url=
"https://github.com/cloudFPGA/cfsp",
55 "Bug Tracker":
"https://github.com/cloudFPGA/cfsp/issues",
57 packages=setuptools.find_packages(),
58 setup_requires=[
'wheel'],
74 package_data={
'':[
'cFSPlib']},
75 include_package_data=
True,
78 "Intended Audience :: Developers",
79 "License :: OSI Approved :: Apache Software License",
80 "Programming Language :: Python :: 3",
81 "Topic :: Software Development :: Libraries :: Python Modules",
83 python_requires=
'>=3.6',