-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 883 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
import os
from distutils.core import setup
packages = []
for root, dirs, files in os.walk('bake'):
if '__init__.py' in files:
packages.append(root.replace('/', '.'))
setup(
name='bake',
version='1.0.0a1',
description='A project scripting and build utility.',
long_description=open('README.rst').read(),
author='Jordan McCoy',
author_email='mccoy.jordan@gmail.com',
license='BSD',
url='http://github.com/jordanm/bake',
packages=packages,
scripts=['bin/bake'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
]
)