forked from callowayproject/django-kamasutra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 831 Bytes
/
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
import os
from setuptools import setup
import positions
version = positions.__version__
try:
f = open('README.rst')
long_desc = f.read()
f.close()
except:
long_desc = ""
try:
reqs = open('requirements.txt').read()
except:
reqs = ''
setup(name='django-kamasutra',
version=version,
description='A application to position objects anywhere on a page.',
long_description=long_desc,
author='Jose Soares',
author_email='josefsoares@gmail.com',
url='https://github.com/callowayproject/django-kamasutra',
packages=['positions'],
include_package_data = True,
install_requires = reqs,
classifiers=['Framework :: Django',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
)