-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 804 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 804 Bytes
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
#!/usr/bin/env python
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='nostr-sdk',
version='0.0.5',
description="High level client library.",
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data = True,
zip_safe=False,
packages=['nostr_sdk'],
package_dir={'nostr_sdk': './src/nostr-sdk'},
url="https://github.com/rust-nostr/nostr",
author="Yuki Kishimoto <yukikishimoto@protonmail.com>",
license="MIT",
# This is required to ensure the library name includes the python version, abi, and platform tags
# See issue #350 for more information
has_ext_modules=lambda: True,
)