-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (55 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-
"""
:mod:`setup`
============
.. module:: setup
:platform: Unix, Windows
:synopsis: The Python Packaging setup file.
.. moduleauthor:: hbldh <[email protected]>
Created on 2015-09-17, 12:39
"""
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import
import os
from setuptools import setup, find_packages
# Get the long description from the README file
try:
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.rst')) as f:
long_description = f.read()
except:
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
setup(
name='dlxsudoku',
version='0.10.3',
author='Henrik Blidh',
author_email='[email protected]',
description='Sudoku Solver in pure Python with no dependencies',
long_description=long_description,
license='GNU GPLv2',
url='https://github.com/hbldh/dlxsudoku',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'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 :: 3.5',
'Intended Audience :: Developers',
],
keywords=["sudoku", "sudoku solver", "dancing links"],
packages=find_packages(exclude=('tests', )),
install_requires=[],
package_data={},
dependency_links=[],
ext_modules=[],
entry_points={
'console_scripts': [
'solve-sudoku = dlxsudoku.sudoku:main'
]
},
)