forked from emailage/Emailage_Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (41 loc) · 1.73 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
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
"""Setup script for Emailage."""
import setuptools
try:
README = open("README.md").read()
CHANGES = open("CHANGES.md").read()
except IOError:
DESCRIPTION = "The Emailage (TM) API was built to help companies integrate with our highly efficient fraud risk and scoring system. By calling our API endpoints and simply passing us an email and/or IP Address, companies will be provided with real-time risk scoring assessments based around machine learning and proprietary algorithms that evolve with new fraud trends."
else:
DESCRIPTION = README + CHANGES
PROJECT = 'emailage-official'
VERSION = '1.1.8'
setuptools.setup(
name=PROJECT,
version=VERSION,
description="Official Emailage API client written in Python",
url='https://www.emailage.com/',
author='Emailage Dev Team',
author_email='dev@emailage.com',
packages=setuptools.find_packages(),
entry_points={'console_scripts': []},
long_description=DESCRIPTION,
long_description_content_type='text/markdown',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
install_requires=open("requirements.txt").readlines(),
)