forked from abhishek-ram/pyas2-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (50 loc) · 1.55 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
install_requires = [
"asn1crypto==1.5.1",
"oscrypto==1.3.0",
"pyOpenSSL==23.2.0",
]
tests_require = [
"pytest==6.2.5",
"toml==0.10.2",
"pytest-cov==2.8.1",
"coverage==5.0.4",
"pylint==2.12.1",
"pylama==8.3.7",
"pylama-pylint==3.1.1",
"black==22.6.0",
"pytest-black==0.3.12",
"pyflakes==2.4.0",
]
setup(
name="pyas2lib",
description="Python library for building and parsing AS2 Messages",
license="GNU GPL v2.0",
url="https://github.com/abhishek-ram/pyas2-lib",
long_description="Docs for this project are maintained at "
"https://github.com/abhishek-ram/pyas2-lib/blob/"
"master/README.md",
version="1.4.3",
author="Abhishek Ram",
author_email="[email protected]",
packages=find_packages(where=".", exclude=("test*",)),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security :: Cryptography",
"Topic :: Communications",
],
setup_requires=["pytest-runner"],
install_requires=install_requires,
tests_require=tests_require,
extras_require={
"tests": tests_require,
},
)