-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (42 loc) · 1.35 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
45
46
47
48
#!/usr/bin/env python
# coding: utf8
import os
from setuptools import setup, find_packages
# avoid importing the module
__version__ = None
exec(open('colloquial/_version.py').read())
# 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-colloquial',
version=__version__,
description='',
long_description=open(readme_path).read(),
author='Greg Brown',
author_email='[email protected]',
url='',
license='BSD License',
zip_safe=False,
platforms='any',
install_requires=['Django>=1.8', 'pyvtt==0.0.1'],
include_package_data=True,
package_data={},
packages=find_packages(exclude=('tests', )),
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',
],
)