forked from starkbank/nfe-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (31 loc) · 999 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
36
37
38
39
40
41
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-nfe",
packages=find_packages(),
include_package_data=True,
description="Python xml signer and webservice requester",
long_description=README,
long_description_content_type="text/markdown",
license="MIT License",
url="https://github.com/starkbank/nfe",
author="Stark Bank",
author_email="[email protected]",
keywords=["nfe", "nfse", "xml", "xml signer", "stark bank", "starkbank"],
install_requires=[
"lxml==4.4.1",
"pycrypto==2.6.1",
"requests==2.22.0",
"rsa==4.0",
"urllib3==1.25.3",
],
version="0.1.5",
)
### 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/*```