-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 934 Bytes
/
Copy pathsetup.py
File metadata and controls
39 lines (34 loc) · 934 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
def long_description():
with open('README.rst') as f:
return f.read()
setup(
name='coder',
version='1.0.6',
description='A graphical interface tool, integrated web encoding/decoding method, hash method and the ASCII table.',
long_description=long_description(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities'
],
keywords='encdoer decoder encoding decoding ',
author='empty_xl',
author_email='empty_xl@163.com',
license='MIT',
url='https://github.com/emptyxl/coder',
packages=['coder'],
package_data={
'coder': ['ascii-table.png'],
},
install_requires=[
'wxPython'
],
entry_points={
'console_scripts': [
'coder = coder.coder:main'
]
},
)