-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
long_description = open("README.md").read()
setup(name="aiosmf",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.7",
author="Noah Watkins",
author_email="[email protected]",
description="Python asyncio smf rpc implementation",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License 2.0",
keywords="smf rpc seastar",
url="https://github.com/noahdesu/aiosmf",
zip_safe=True,
install_requires=[
"flatbuffers>=1.10",
"xxhash>=1.3.0",
"zstandard>=0.11.0",
],
classifiers=[
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Topic :: System :: Networking",
"Development Status :: 4 - Beta",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
])