-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 752 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 752 Bytes
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
import os
from setuptools import setup, find_packages
import generic_positions as app
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name="django-generic-positions",
version=app.__version__,
description=read('DESCRIPTION'),
long_description=read('README.rst'),
license='The MIT License',
platforms=['OS Independent'],
keywords='django, reusable, position, reorder, order',
author='Tobias Lorenz',
author_email='tobias.lorenz@bitmazk.com',
url="https://github.com/bitmazk/django-generic-positions",
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django',
],
)