-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (35 loc) · 1.15 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
import os
from setuptools import setup
from boardtt import VERSION
PATH_BASE = os.path.dirname(__file__)
PATH_BIN = os.path.join(PATH_BASE, 'bin')
SCRIPTS = None
if os.path.exists(PATH_BIN):
SCRIPTS = [os.path.join('bin', f) for f in os.listdir(PATH_BIN) if os.path.join(PATH_BIN, f)]
f = open(os.path.join(PATH_BASE, 'README.rst'))
README = f.read()
f.close()
setup(
name='boardtt',
version='.'.join(map(str, VERSION)),
url='https://github.com/idlesign/boardtt',
description='Board Games Translator Toolbox',
long_description=README,
license='BSD 3-Clause License',
author='Igor `idle sign` Starikov',
author_email='[email protected]',
packages=['boardtt'],
include_package_data=True,
zip_safe=False,
install_requires=[],
scripts=SCRIPTS,
classifiers=[
# As in https://pypi.python.org/pypi?:action=list_classifiers
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License'
],
)