-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (36 loc) · 1.13 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
35
36
37
38
import sys
from setuptools import setup
if sys.version_info.major != 3 or sys.version_info.minor < 4:
raise RuntimeError("packager requires Python 3.4 or greater")
setup(
name='cvra-packager',
version='1.2.0',
description='CVRA packaging system',
author='Club Vaudois de Robotique Autonome',
author_email='[email protected]',
url='https://github.com/cvra/packager',
license='BSD',
packages=['cvra_packager'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Embedded Systems',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'pyyaml~=5.1.2',
'jinja2~=2.10.1',
],
package_data = {
'': ['*.jinja'],
},
entry_points={
'console_scripts': [
'packager=cvra_packager.packager:main',
],
},
)