Skip to content

Commit 926a9e1

Browse files
committed
add package setup
1 parent 1670f2c commit 926a9e1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

setup.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="boa-api",
8+
version="0.1.0",
9+
author="Boa Project",
10+
author_email="[email protected]",
11+
description="Client API for using the Boa infrastructure",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/boalang/api-python",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: Apache Software License",
19+
"Intended Audience :: Education",
20+
"Intended Audience :: Science/Research",
21+
"Operating System :: OS Independent",
22+
],
23+
python_requires='>=3.6',
24+
)

0 commit comments

Comments
 (0)