-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·44 lines (40 loc) · 1.33 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
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# coding: utf8
import os
from setuptools import setup, find_packages
# if there's a converted readme, use it, otherwise fall back to markdown
if os.path.exists('README.rst'):
readme_path = 'README.rst'
else:
readme_path = 'README.md'
setup(
name='django-simple-search',
version='1.0.2',
description='Recurring event tools for django',
long_description=open(readme_path).read(),
author='Greg Brown',
author_email='greg@gregbrown.co.nz',
url='https://github.com/gregplaysguitar/django-simple-search',
packages=[],
license='BSD License',
zip_safe=False,
platforms='any',
install_requires=['Django>=1.8'],
include_package_data=True,
package_data={},
py_modules=['simple_search'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Framework :: Django',
],
)