-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·31 lines (28 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
#!/usr/bin/python
from confu import __version__, __maintainer__, __email__
from setuptools import setup, find_packages
setup(
name="confu",
version=__version__,
description="Configuration generator for Ninja build system",
url="https://github.com/Maratyszcza/confu",
packages=find_packages(),
scripts=["bin/confu"],
keywords=["build", "ninja"],
maintainer=__maintainer__,
maintainer_email=__email__,
package_data={"confu.recipes": ["*.yaml"]},
requires=[],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools"
],
setup_requires=["six"],
install_requires=["six", "PyYAML", "ninja_syntax>=1.7.2"])