-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.35 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (40 loc) · 1.35 KB
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
import os
from setuptools import setup
version_txt = os.path.join(os.path.dirname(__file__), 'lc4', 'version.txt')
with open(version_txt, 'r') as f:
version = f.read().strip()
with open('README.md', encoding='utf8') as f:
long_description = f.read()
setup(
author='Daniel Steinberg',
author_email='ds@dannyadam.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
],
description='A Python implementation of ElsieFour (LC4)',
entry_points={
'console_scripts': ['lc4=lc4.lc4:main'],
},
keywords=['cryptography', 'lc4', 'elsie-four'],
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
name='lc4',
package_data={'lc4': ['version.txt']},
packages=['lc4'],
python_requires='>=3.5',
install_requires=['numpy'],
url='https://github.com/dstein64/lc4',
version=version,
)