-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (35 loc) · 1.22 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
# -*- coding: utf-8 -*-
from setuptools import setup
from codecs import open
from os import path
import sudokuqml
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
# with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
# long_description = f.read()
setup(
name='SudokuQML',
version=sudokuqml.__version__,
description='Sudoku',
# long_description=long_description,
long_description='Sudoku puzzle game using PyQt and QML',
url='https://github.com/pkobrien/sudoku-qml',
author="Patrick K. O'Brien",
author_email='patrick.keith.obrien@gmail.com',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Games/Entertainment :: Puzzle Games',
],
keywords='pyqt qml qt sudoku',
extras_require={
'test': ['pytest'],
},
)