-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (47 loc) · 1.79 KB
/
setup.py
File metadata and controls
52 lines (47 loc) · 1.79 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')
# Read version string. See
# http://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package
exec(open('sgframework/version.py').read())
setup(
name='sgframework',
version=__version__,
description="A framework for the Secure Gateway concept architecture.",
long_description=readme + '\n\n' + history,
author="Jonas Berg",
author_email='caranopensource@semcon.com',
url='https://github.com/caran/SecureGateway',
packages=['sgframework'],
package_dir={'sgframework': 'sgframework'},
scripts=['scripts/canadapter', 'scripts/servicemanager', 'scripts/canadapterlib.py'],
include_package_data=True,
install_requires=['can4python', 'paho-mqtt'],
license="BSD",
zip_safe=False,
keywords='sgframework',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware :: Hardware Drivers'
],
test_suite='tests.suites.embedded',
tests_require=[]
)