-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (41 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
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='wright',
version='0.1.7',
description='Leight weight (C) project configurator',
long_description="""
⚒ Wright
========
Yet Another Build Tool
----------------------
There are plenty of awesome configurators out there, but they are all way too
complicated for most of my project needs. Wright uses a simple modular stage
based configuration scheme and uses Jinja2 to generate code snippets, Makefiles,
etc.
Example Usage
-------------
Inspect the test directory at https://github.com/tehmaze-labs/wright/tree/master/test
Bugs/Features
-------------
You can issue a ticket in GitHub: https://github.com/tehmaze-labs/wright/issues
""",
author='Wijnand Modderman-Lenstra',
author_email='[email protected]',
url='https://github.com/tehmaze-labs/wright',
license='MIT',
keywords='configure autotools c build scons',
packages=[
'wright',
'wright.stage',
],
entry_points={
'console_scripts': [
'wright=wright.main:main',
],
},
install_requires=[
'Jinja2',
],
)