-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (33 loc) · 945 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
from setuptools import setup, find_packages
setup(
name='pelicanium',
version=0.1,
url='https://github.com/dimazest/pelicanium',
author="Dmitrijs Milajevs",
author_email="[email protected]",
description='A port of the Ghostium theme to Pelican.',
long_description=open("README.rst").read(),
license='MIT',
packages=find_packages(),
package_data={'': [
'LICENSE',
'README.rst',
'static/*',
'templates/*',
]
},
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
install_requires=[
'pelican',
'pelican-edit-url',
'pelican_extended_authors',
],
)