forked from cmdln/flashbake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 804 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 804 Bytes
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
#!/usr/bin/env python
#
# setup.py for flashbake
from setuptools import setup, find_packages
setup(name='flashbake',
version='0.26.3',
author="Thomas Gideon",
author_email="cmdln@thecommandline.net",
url="http://thecommandline.net",
license="GPLv3",
package_dir={'': 'src'},
packages=find_packages(where='./src/', exclude=('./test/')),
install_requires='''
enum >=0.4.3
feedparser >=4.1
''',
entry_points={
'console_scripts': [ 'flashbake = flashbake.console:main',
'flashbakeall = flashbake.console:multiple_projects' ]
},
include_package_data = True,
exclude_package_data = { '' : [ 'test/*' ] }
)