forked from nucle0tides/wutangy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 829 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
from setuptools import setup, find_packages
try:
with open('README.rst') as file:
long_description = file.read()
except Exception as error:
print("Could not find README.rst for long description. Error: {}".format(
error))
print("Leaving long_description as None")
long_description = None
setup(
name='wutangy',
author='elias julian marko garcia',
author_email='[email protected]',
description=(
'wutangy is a WuTang inspired lorem ispsum generator, SUUUUUUUUUU'),
url='https://github.com/ejmg/wutangy',
version='0.0.12dev',
packages=find_packages(),
entry_points={
"console_scripts": ['wutangy = wutangy.wutangy:wu'],
},
install_requires=[],
include_package_data=True,
license='MIT',
long_description=long_description)