-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·35 lines (29 loc) · 1.07 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
31
32
33
34
35
from os.path import abspath, dirname, join, normpath
import setuptools
setuptools.setup(
# Basic package information:
name='pelican_cite',
version='1.0.0',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
# Packaging options:
include_package_data=True,
# Package dependencies:
install_requires=['pelican>=4.0', 'pybtex'],
# Metadata for PyPI:
author='Arvid Norlander',
author_email='[email protected]',
license='GPL-3.0',
url='https://github.com/VorpalBlade/pelican-cite',
keywords='pelican blog static bibtex citation',
description='Allows the use of BibTeX citations within a Pelican site.',
long_description=open(
normpath(join(dirname(abspath(__file__)), 'README.md'))).read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Framework :: Pelican :: Plugins",
],
)