forked from abhishek-ram/pyas2-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.39 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
from setuptools import setup, find_packages
install_requires = [
'asn1crypto==0.24.0',
'oscrypto==0.19.1',
'pyOpenSSL==17.5.0',
]
tests_require = [
'pytest==3.4.0',
'pytest-cov==2.5.1',
'coverage==4.3.4',
'nose',
]
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=long_description,
long_description="Docs for this project are maintained at "
"https://github.com/abhishek-ram/pyas2-lib/blob/"
"master/README.md",
version='1.1.0',
author="Abhishek Ram",
author_email="abhishek8816@gmail.com",
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.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Security :: Cryptography",
"Topic :: Communications",
],
install_requires=install_requires,
test_suite='nose.collector',
tests_require=tests_require,
)