forked from SCons/scons-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1.16 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/env python
from setuptools import setup
setup(name='sconscontrib',
version='1.0',
description='Contributed builders and other useful logic for the SCons build system.',
author='The SCons Foundation',
author_email='scons-users@scons.org',
url='https://bitbucket.org/scons/scons-contrib/',
packages=['sconscontrib/SCons/Tool/cuda',
'sconscontrib/SCons/Tool/IDL',
'sconscontrib/SCons/Tool/lyx',
'sconscontrib/SCons/Tool/ProC',
'sconscontrib/SCons/Tool/Protoc'],
install_requires=['scons'],
license='MIT',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2'
],
keywords='scons build development',
# install executable script without .py extension
#py_modules=['Dummy'],
#entry_points={'console_scripts': ['Dummy = Dummy:main']}
)