-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·32 lines (30 loc) · 942 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
import setuptools
def long_description():
with open('README.rst', 'r') as f:
return f.read()
setuptools.setup(
name='django-vitae',
version='0.0.2.6',
author='Michael Bader',
author_email='[email protected]',
license='BSD Three Clause',
description='A CV generator built for the Django web framework.',
long_description=long_description(),
url='https://github.com/mikebader/django-vitae',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'django>=1.11',
'markdown>=2.6.11',
'citeproc-py>=0.4.0',
'citeproc-py-styles>=0.1.1',
'django-widgets>=-0.1.16'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
]
)