-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.51 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
import os
from setuptools import find_packages, setup
_readme_path = os.path.join(
os.path.abspath(os.path.dirname(__file__)),
'README.rst',
)
with open(_readme_path, encoding='utf-8') as _readme_file:
_readme = _readme_file.read()
setup(
name='mnemonicode',
url='https://github.com/bwhmather/python-mnemonicode',
version='1.4.5',
author='Ben Mather',
author_email='bwhmather@bwhmather.com',
maintainer='',
license='BSD',
description=(
"A library for encoding binary data as a sequence of english words"
),
long_description=_readme,
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
install_requires=[
],
packages=find_packages(),
package_data={
'': ['*.pyi', 'py.typed'],
},
entry_points={
'console_scripts': [
'mnencode=mnemonicode:_mnencode_main',
'mndecode=mnemonicode:_mndecode_main',
],
},
test_suite='mnemonicode.tests.suite',
)