forked from tuna/gdanmaku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (30 loc) · 858 Bytes
/
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
#!/usr/bin/env python2
# -*- coding:utf-8 -*-
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = ["gdanmaku"]
requires = ["requests"]
with open("README.md") as f:
readme = f.read()
setup(
name="gdanmaku",
version="0.2-dev",
description="Display danmaku on any screen",
long_description=readme,
author="Justin Wong",
author_email="justin.w.xd@gmail.com",
url="https://github.com/tuna/gdanmaku/",
packages=packages,
package_data={'': ['LICENCE', ], 'gdanmaku': [os.path.join('images', '*.png'), ]},
package_dir={'gdanmaku': 'gdanmaku'},
include_package_data=True,
install_requires=requires,
license="GPLv3",
entry_points={
'console_scripts': ['gdanmaku = gdanmaku.danmaku:main'],
},
)
# vim: ts=4 sw=4 sts=4 expandtab