-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.08 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
import io
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
with io.open(os.path.join(here, 'VERSION')) as f:
version = f.read()
requirements = ['pycryptodome']
setup(name='signethic',
version=version,
entry_points={
'console_scripts': [
'signethic=signethic.__init__:main',
],
},
install_requires=requirements,
include_package_data=True,
description='Object signing and signature verification module',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/dionresearch/signethic',
author='Francois Dion',
author_email='[email protected]',
license='MIT',
packages=['signethic'],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)