-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 744 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 744 Bytes
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
from os import path
import priest
here = path.abspath(path.dirname(__file__))
setup(
name = 'priest',
packages=find_packages(),
version = priest.__version__,
include_package_data=True,
description = 'Generate wishes from your command line with full customization.',
author = 'Ankush Sharma',
author_email = 'ankprahsar@gmail.com',
url = 'https://github.com/black-perl/priest',
download_url = 'https://github.com/black-perl/priest/tarball/0.5',
keywords = ['priest', 'automated-wishes'],
license='MIT',
install_requires=[
'requests==2.2.1',
'pytz==2015.4',
'goslate==1.4.0'
]
)