forked from mtigas/django-medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 895 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
from setuptools import setup, find_packages
install_requires = [
'django',
]
version = __import__('django_medusa').get_version()
setup(name='django-medusa',
version=version,
description='A Django static website generator.',
author='Mike Tigas', # update this as needed
author_email='[email protected]', # update this as needed
url='https://github.com/mtigas/django-medusa/',
download_url='https://github.com/mtigas/django-medusa/downloads',
packages=find_packages(),
install_requires=install_requires,
license='MIT',
keywords='django static staticwebsite staticgenerator publishing',
classifiers=["Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)