-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
46 lines (41 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
# -*- coding: utf-8 -*-
__author__ = 'Renato de Pontes Pereira'
__author_email__ = '[email protected]'
__version__ = '1.0'
__date__ = '2011 10 13'
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
f = open('README.rst','rU')
long_description = f.read()
f.close()
setup(
name = 'pgnparser',
version = __version__,
author = __author__,
license='MIT License',
description = 'A python PGN parser',
long_description=long_description,
url = 'http://renatopp.com/pgnparser',
download_url = 'https://github.com/renatopp/pgnparser',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
('Topic :: Software Development :: Libraries :: Python Modules'),
('Topic :: Games/Entertainment'),
],
keywords='chess game pgn parser python',
py_modules=['pgn'],
)