-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (31 loc) · 1.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
import unittest
import tests
from setuptools import setup,find_packages
def readme():
with open('README.rst') as f:
return f.read()
def test_suite():
loader = unittest.TestLoader()
suite = loader.loadTestsFromModule(test_module)
return suite
setup(name='apx',
version='0.4.2',
description='Official APX python toolchain and client',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
],
url='http://github.com/cogu/apx/python3',
author='Conny Gustafsson',
author_email='[email protected]',
license='MIT',
install_requires=[
'autosar>=0.3.4, <0.3.6'
],
packages=['apx','remotefile'],
py_modules=['numheader'],
test_suite = 'tests',
dependency_links=['https://github.com/cogu/autosar/archive/v0.3.4.tar.gz#egg=autosar-0.3.4'],
zip_safe=False)