-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 877 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
from flyingcracker import VERSION
def read(fname):
f = open(os.path.join(os.path.dirname(__file__), fname))
contents = f.read()
f.close()
return contents
setup(
name="flyingcracker",
version=".".join(map(str, VERSION)),
description="flyingcracker is a community service web application",
long_description=read("README.rst"),
author="Graham Ullrich",
author_email="[email protected]",
url="https://github.com/grahamu/flyingcracker/",
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Framework :: Django",
],
)