-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 873 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
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
version = open('VERSION').read().strip()
requirements = [
# put packages here
'wheel',
'click',
'jinja2',
'beautifulsoup4',
'markdown',
'python-frontmatter',
'python-dateutil',
'requests',
'cssutils'
]
setup_options = dict(
name='spoonbill',
version=version,
author='Darryl T. Agostinelli',
author_email='[email protected]',
url='https://github.com/dagostinelli/spoonbill',
description='Static website generator',
long_description=open('README.md').read().strip(),
package_dir={'': 'src'}, # package lives under src but src is not a package itself
packages=find_packages('src'),
include_package_data=True,
install_requires=requirements,
tests_require=requirements,
test_suite='tests',
entry_points={
'console_scripts': [
'spoonbill=spoonbill.__main__:main',
]
}
)
setup(**setup_options)