This repository was archived by the owner on Dec 11, 2019. It is now read-only.
forked from powellc/django-notes
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
51 lines (44 loc) · 1.35 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
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
DESCRIPTION = (
"A simple model for keeping notes."
)
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return DESCRIPTION
setup(
name="notes",
version="0.3.0",
description=DESCRIPTION,
long_description=read("README.rst"),
author="Colin Powell",
author_email="colin@onecardinal.com",
license="BSD",
url="http://github.com/powellc/django-notes/",
packages=['notes'],
install_requires=[
'django>=1.7'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
)