-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 928 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
#!/usr/bin/env python3
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='ghrocker',
version="0.0.9",
packages=['ghrocker'],
package_dir={'': 'src'},
package_data={'ghrocker': ['templates/*.em']},
author="Tully Foote",
author_email="[email protected]",
description="A rocker extension to locally test github pages.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tfoote/ghrocker",
license='Apache 2.0',
install_requires=[
'empy',
'rocker>=0.2.13',
],
install_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'ghrocker = ghrocker.ghrocker:main',
],
'rocker.extensions': [
'ghpages = ghrocker.ghpages_extension:GHPages',
]
}
)