-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (58 loc) · 2.01 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
50
51
52
53
54
55
56
57
58
59
60
61
62
import os
import re
from setuptools import setup, find_packages
import binconvert
try:
import pypandoc
_long_description = pypandoc.convert(
source='README.md',
format='markdown_github',
to='rst',
outputfile='README.rst')
except(IOError, ImportError):
_long_description = open('README.md').read()
_author = 'Alex Goodman'
_email = '[email protected]'
_version = binconvert.__version__
setup(
name = 'binconvert',
version = _version,
description = 'Converts byte ordering in binary files from one '
'platform to another',
long_description = _long_description,
author = _author,
author_email = _email,
maintainer = _author,
maintainer_email = _email,
url = 'https://github.com/agoodm/binconvert',
platforms = ['any'],
install_requires = ['pyyaml'],
license = 'MIT',
tests_require = ['nose'],
test_suite = 'nose.collector',
include_package_data = True,
packages = find_packages(),
package_data = {
'': ['README.md', 'LICENSE']
},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: System :: Systems Administration',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe = False,
entry_points={
'console_scripts': ['bconv = binconvert.cli.script:main',],
})