-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
36 lines (24 loc) · 937 Bytes
/
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
32
33
34
35
from os import path
from setuptools import setup, find_packages
with open(path.join(path.dirname(__file__), "README.md")) as readme:
README = readme.read()
setup(
name="starkbank-ecdsa",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
description="A lightweight and fast pure python ECDSA library",
long_description=README,
long_description_content_type="text/markdown",
license="MIT License",
url="https://github.com/starkbank/ecdsa-python.git",
author="Stark Bank",
author_email="[email protected]",
keywords=["ecdsa", "elliptic curve", "elliptic", "curve", "stark bank", "starkbank", "cryptograph", "secp256k1", "prime256v1"],
version="2.2.0"
)
### Create a source distribution:
#Run ```python setup.py sdist``` inside the project directory.
### Install twine:
#```pip install twine```
### Upload package to pypi:
#```twine upload dist/*```