-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
29 lines (27 loc) · 852 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from publications import __version__
setup(
name='django-publications',
version=__version__,
author='Lucas Theis',
author_email='lucas@theis.io',
description='A Django app for managing scientific publications.',
url='https://github.com/lucastheis/django-publications',
packages=find_packages(),
include_package_data=True,
install_requires=('Django>=2.1.0', 'Pillow>=2.3.0'),
zip_safe=False,
license='MIT',
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
),
)