-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
38 lines (36 loc) · 1.09 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
#!/usr/bin/env python
from setuptools import setup
import sys
version = "0.3.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools"
]
setup(
name="buildfox",
version=version,
description="Minimalistic ninja generator",
long_description=None,
classifiers=classifiers,
keywords="buildfox bf ninja build tool c cpp",
author="@beardsvibe",
author_email="[email protected]",
url="https://github.com/beardsvibe/buildfox",
license="https://github.com/beardsvibe/buildfox/blob/master/license",
packages=["buildfox"],
include_package_data=True,
zip_safe=True,
install_requires=[],
tests_require=["unittest2"],
entry_points={'console_scripts': ['bf=buildfox:main']}
)