Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add setup.py for pypi #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from setuptools import setup, find_packages

requirements = [
'flask==2.3.2', # dependency list
'loguru==0.7.0',
]

setup(
name='flock-sdk', # package name
version='0.0.2', # package version
author='FLock.io', # author name
author_email='[email protected]', # author email
description='An SDK for building applications on top of FLock V1', # short description
long_description=open('README.md').read(), # long description, usually is README
long_description_content_type='text/markdown', # long description content type, e.g. text/markdown or text/plain
url='https://github.com/FLock-io/v1-sdk', # project home page link
packages=find_packages(), # automatically find directories containing '__init__.py'
keywords=[
"blockchain",
"federated learning",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", # supported Python versions
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # license
'Operating System :: OS Independent', # operating system
],
install_requires=requirements,
python_requires='>=3.7', # Python version requirement
)