forked from thclark/wagtail_references
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.62 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (43 loc) · 1.62 KB
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
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# Note:
#
# This medium article descripbes the travis / releases integration steps:
# https://medium.com/@mikkokotila/deploying-python-packages-to-pypi-with-travis-works-9a6597781556
#
# The Hitchiker's guide to python provides an excellent, standard, method for creating python packages:
# http://docs.python-guide.org/en/latest/writing/structure/
#
# To deploy on PYPI follow the instructions at the bottom of:
# https://packaging.python.org/tutorials/distributing-packages/#uploading-your-project-to-pypi
from setuptools import setup, find_packages
with open('README.md') as f:
readme_text = f.read()
setup(
name='wagtail_references',
version='0.3.0',
description='BibTeX references for Wagtail',
long_description=readme_text,
long_description_content_type="text/markdown",
author='thclark',
author_email='withheld.find@me.at.github.com',
url='https://github.com/thclark/wagtail_references',
packages=find_packages(exclude=('tests', 'docs')),
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent'
],
include_package_data=True,
install_requires=[
'django>=2.1',
'django-jsonfield>=1.3.0',
'wagtail>=2.3',
'bibtexparser>=1.1.0',
],
keywords=['wagtail', 'django', 'references']
)