-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
28 lines (23 loc) · 837 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-voting",
version = "0.1",
url = 'http://github.com/scottwrobinson/django-voting',
license = 'BSD',
description = "Django voting application that tracks the number of votes for any DB objects.",
long_description = read('README.md'),
author = 'Scott Robinson',
packages = find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)