-
Notifications
You must be signed in to change notification settings - Fork 238
/
setup.py
37 lines (32 loc) · 1.44 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
# /usr/bin/env python
from pkg_resources import parse_requirements
from setuptools import find_packages, setup
import photologue
def get_requirements(source):
with open(source) as f:
return sorted({str(req) for req in parse_requirements(f.read())})
setup(
name="django-photologue",
version=photologue.__version__,
description="Powerful image management for the Django web framework.",
author="Justin Driscoll, Marcos Daniel Petry, Richard Barran",
url="https://github.com/richardbarran/django-photologue",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'],
install_requires=get_requirements('requirements.txt'),
)