-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (34 loc) · 1.08 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
# -*- coding: utf-8 -*-
from codecs import open as codecs_open
from setuptools import setup, find_packages
src_dir = 'src'
with codecs_open('README.rst', encoding='utf-8') as file:
long_description = file.read()
with codecs_open('{0}/frogsay/version.py'.format(src_dir), encoding='utf-8') as file:
exec(file.read())
requirements = [
'click == 6.2',
'semidbm == 0.5.1',
'six == 1.10.0',
'python-RIBBIT == 1.0.2.dev0',
]
setup(name='frogsay',
version=__version__,
description='An ASCII frog prints a handy FROG tip on the command line.',
long_description=long_description,
classifiers=[],
keywords='FROG CROAK',
author='Charlie Liban',
author_email='charlie@clib.ca',
url='https://github.com/clibc/frogsay',
license='MIT',
packages=find_packages(src_dir, exclude=['tests', 'examples']),
package_dir={'': src_dir},
include_package_data=True,
zip_safe=False,
install_requires=requirements,
entry_points={
'console_scripts': [
'frogsay=frogsay:cli'
]
})