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
|
# Copyright 2014-2015 ARM Limited
#
# Licensed under the Apache License, Version 2.0
# See LICENSE file for details.
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
return None
setup(
name = "valinor",
version = "1.1.4",
author = 'Martin Kojtal, James Crosby',
author_email = "c0170@rocketmail.com, James.Crosby@arm.com",
description = ("Generate IDE project files to debug ELF files."),
license = "Apache-2.0",
keywords = "debug c cpp project generator embedded",
url = "https://github.com/ARMmbed/valinor",
packages=find_packages(),
package_data={
},
long_description=read('docs/pypi.txt'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Environment :: Console",
],
entry_points={
"console_scripts": [
"valinor=valinor:main",
],
},
test_suite = 'test',
install_requires=[
'colorama>=0.3',
'pyocd',
'project_generator>=0.8.0',
'pyelftools>=0.23',
],
tests_require=[
]
)
|