-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·50 lines (45 loc) · 1.52 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#-----------------------------------------------------------------------------
# Copyright (c) 2011, Evan Leis
#
# Distributed under the terms of the Apache Software License
#-----------------------------------------------------------------------------
import os
from setuptools import setup, find_packages
rel = lambda * x: os.path.abspath(os.path.join(os.path.dirname(__file__), *x))
with open(rel('./README.md')) as readme:
long_description = readme.read()
setup(
name='ezfacebook',
version='0.87.0',
description="Django Tools to use facebook seamlessly without having to build around it.",
long_description=long_description,
author='Evan Leis',
author_email='engineergod@yahoo.com',
url='https://github.com/explodes/ezfacebook',
install_requires=[
],
setup_requires=[
],
packages=find_packages(exclude=[
]),
include_package_data=True,
test_suite="ezfacebook.tests",
package_data={},
zip_safe=True,
entry_points="""
""",
license="Apache Software License",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
],
)