-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (25 loc) · 810 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
from setuptools import setup, find_packages
version = '0.4'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = "Whitespace interpreter written in Python 3"
setup(
name='whitepy',
version=version,
author='Yasser Nabi',
author_email='yassersaleemi@gmail.com',
packages=['whitepy'],
scripts=['whitepycli'],
package_data={'README.md': ['README.md']},
url='https://github.com/yasn77/whitepy',
download_url='https://github.com/yasn77/whitepy/archive/{}.tar.gz'.format(version),
license='LICENSE.txt',
description='Whitespace interpreter written in Python 3',
long_description=long_description,
install_requires=[
"click == 6.7",
"readchar == 0.7",
],
)