-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (26 loc) · 841 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
import os
from setuptools import setup, find_packages
current_dir = os.path.dirname(os.path.abspath(__file__))
def read(filename):
fullpath = os.path.join(current_dir, filename)
try:
with open(fullpath) as f:
return f.read()
except Exception:
return ""
setup(
name='funkload-friendly',
version='0.2',
description="Friendly wrapper of FunkLoad.",
long_description=read('README.rst'),
package_dir={'': 'src'},
packages=find_packages('src'),
author='Shinya Okano',
author_email='tokibito@gmail.com',
url='https://github.com/tokibito/funkload-friendly',
install_requires=['funkload>=1.17.1'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
])