-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (28 loc) · 1017 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
# -*- coding: utf-8 -*-
# Copyright (c) 2014 by Pablo Martín <[email protected]>
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="pitble",
version="0.0.2",
author="Pablo Martin, Raul Sanchez, Alberto Vara",
author_email="[email protected]",
description="Django microblog",
long_description=(read('README.rst') + '\n\n' + read('CHANGES.rst')),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license="LGPL 3",
keywords="django,microblog,pitble",
url='https://github.com/openwebinars-django/pitble/',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=('django-bootstrap3==4.3.0',),
)