-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 730 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 730 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
#!/usr/bin/env python
from setuptools import setup
from codecs import open
def readme():
with open('README.rst', 'r', 'utf-8') as f:
return f.read()
setup(name='phish-ai-api',
version='1.7',
description='Phish.AI API wrapper',
long_description=readme(),
author='Yevgeny Pats',
author_email='yp@phish.ai',
url='https://github.com/phishai/phish-ai-api',
packages=['phish_ai_api'],
classifiers=['Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5']
)