-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (31 loc) · 1.1 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
from setuptools import setup
from staticflatpages import __version__
setup(
name='django-staticflatpages',
version=__version__,
description="like flatpages, but with templates.",
long_description=open('README.md').read(),
author='Brad Montgomery',
author_email='[email protected]',
url='https://github.com/bradmontgomery/django-staticflatpages',
license='MIT',
packages=['staticflatpages'],
include_package_data=True,
package_data={'': ['README.md']},
zip_safe=False,
install_requires=['django'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)