forked from kevinmickey/qhonuskan-votes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.12 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
import os.path
from setuptools import setup
pkg_name = 'qhonuskan-votes'
pkg_version = __import__(pkg_name.replace('-', '_')).__version__
# get requires from requirements/global.txt file.
requires_file_name = os.path.join(
os.path.dirname(__file__), 'requirements', 'global.txt')
install_requires = [x.strip() for x in open(requires_file_name).readlines()]
setup(
name=pkg_name,
version=pkg_version,
url='https://github.com/linkfloyd/qhonuskan-votes',
license='GPL',
description="Easy to use reddit like voting system for django models.",
long_description=open('README.rst', 'r').read(),
author='Mirat Can Bayrak',
author_email='[email protected]',
packages=[
'qhonuskan_votes',
'qhonuskan_votes.templatetags'
],
install_requires=install_requires,
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
],
)