forked from hosom/pythreatgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1.12 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
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pythreatgrid',
version='1.0.11',
description='Python ThreatGrid API wrapper',
long_description=read('README.md') + '\n\n' + read('CHANGES.md'),
long_description_content_type='text/markdown',
author='Stephen Hosom, Rusty Bower',
author_email='[email protected], [email protected]',
download_url='https://github.com/RustyBower/pythreatgrid/archive/v1.0.11.tar.gz',
url='https://github.com/RustyBower/pythreatgrid',
packages=['pythreatgrid'],
install_requires=['requests'],
classifiers=[
'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',
]
)