-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·36 lines (31 loc) · 1.03 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
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
import re
def find_version():
return re.search(r"^__version__ = '(.*)'$",
open('nala/version.py', 'r').read(),
re.MULTILINE).group(1)
setup(name='nala',
version=find_version(),
description='A test framework for C projects.',
long_description=open('README.rst', 'r', encoding='utf-8').read(),
author='Erik Moqvist and Valentin Berlier',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords=['c', 'test', 'mock'],
url='https://github.com/eerimoq/nala',
packages=find_packages(exclude=['tests']),
test_suite="tests",
install_requires=[
'pycparser>=2.21',
'jinja2'
],
include_package_data=True,
entry_points = {
'console_scripts': ['nala=nala.cli:main']
})