Fixing the missing initialization of the field 'initialized' in the global context...
[barectf.git] / setup.py
index 34bd83014bcfbc308f4bed93d7de9b023ecd8151..2cd5ebdf630fbae28e62940941a9cd27c96af548 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 #
 # The MIT License (MIT)
 #
-# Copyright (c) 2014 Philippe Proulx <philippe.proulx@efficios.com>
+# Copyright (c) 2014-2015 Philippe Proulx <pproulx@efficios.com>
 #
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the "Software"), to deal
 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 # THE SOFTWARE.
-import os
-import sys
-import subprocess
-from setuptools import setup
-
-
-# make sure we run Python 3+ here
-v = sys.version_info
-if v.major < 3:
-    sys.stderr.write('Sorry, barectf needs Python 3\n')
-    sys.exit(1)
 
+from setuptools import setup
+import sys
 
-install_requires = [
-    'termcolor',
-    'pytsdl',
-]
 
+def _check_python3():
+  # make sure we run Python 3+ here
+  v = sys.version_info
 
-packages = [
-    'barectf',
-]
+  if v.major < 3:
+      sys.stderr.write('Sorry, barectf needs Python 3\n')
+      sys.exit(1)
 
 
-entry_points = {
-    'console_scripts': [
-        'barectf = barectf.cli:run'
-    ],
-}
+_check_python3()
 
 
 setup(name='barectf',
-      version=0.1,
+      version='2.0.0',
       description='Generator of C99 code that can write native CTF',
       author='Philippe Proulx',
       author_email='eeppeliteloop@gmail.com',
       license='MIT',
       keywords='ctf generator tracing bare-metal bare-machine',
-      url='https://github.com/eepp/barectf',
-      packages=packages,
-      install_requires=install_requires,
-      entry_points=entry_points)
+      url='https://github.com/efficios/barectf',
+      packages=[
+          'barectf',
+      ],
+      install_requires=[
+          'termcolor',
+          'pyyaml',
+      ],
+      entry_points={
+          'console_scripts': [
+              'barectf = barectf.cli:run'
+          ],
+      })
This page took 0.02486 seconds and 4 git commands to generate.