-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 1.08 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
import os.path
setup(name='Golbarg',
version='0.2',
description='A static blog generator',
long_description=open('README.rst').read(),
author='Thomas Jost',
author_email='thomas.jost@gmail.com',
url='http://github.com/Schnouki/Golbarg',
requires=['Jinja2', 'Markdown', 'PyYAML'],
platforms='any',
scripts=['golbarg'],
data_files=[(os.path.join('share', 'golbarg'),
["COPYING", "README.rst", "config.yaml.example", "Makefile.example",
"golbarg.el"])],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary',
'Topic :: Internet :: WWW/HTTP :: Site Management',
]
)