-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (53 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-real-content',
version='0.1.11',
packages=find_packages(),
# packages=find_packages(exclude=("tests",)),
include_package_data=True,
license='MIT',
description='Template tags to quickly show real content instead of lorem ipsum.',
long_description=README,
url='https://github.com/mislavcimpersak/django-real-content',
download_url='https://github.com/mislavcimpersak/django-real-content/tarball/0.1.11',
author=u'Mislav Cimperšak',
author_email='[email protected]',
keywords='django real content lorem ipsum',
install_requires=[
'Django>=1.6',
'beautifulsoup4>=4.3'
],
tests_require=[
'Django>=1.6',
'beautifulsoup4>=4.3',
'coverage',
'tox'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)