-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 780 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 780 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
import hexfile
try:
from setuptools import setup, Command
except:
from distutils.core import setup, Command
'''
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys,subprocess
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)
'''
setup(name='hexfile',
version=hexfile.__version__,
packages=['hexfile'],
#cmdclass = {'test':PyTest},
description='Library for loading and manipulating hex files.',
author='Ryan Sturmer',
author_email='ryansturmer@gmail.com',
#install_requires=[],
#tests_require=[],
url='http://www.github.com/ryansturmer/hexfile')