-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (30 loc) · 896 Bytes
/
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
#!/usr/bin/python
from setuptools import setup
setup(
name='hammocking',
license='MIT',
author='avengineers',
author_email='avengineers@gmail.com',
url='https://avengineers.github.io/hammocking',
description='Create mocks for c-code automatically',
long_description = 'Create mocks for c-code automatically',
long_description_content_type = 'text/x-rst',
packages=['hammocking'],
include_package_data=True,
zip_safe=False,
use_scm_version=True,
setup_requires=[
'setuptools_scm'
],
install_requires=[
'libclang',
'Jinja2'
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python'
]
)