forked from EventRegistry/event-registry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 930 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
def readme():
with open('README.md') as f:
return f.read()
setup(name='eventregistry',
version='6.0.8',
description = "A package that can be used to query information in Event Registry (http://eventregistry.org/)",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing :: General',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Intended Audience :: Information Technology'
],
url='https://github.com/gregorleban/EventRegistry',
author='Gregor Leban',
author_email='[email protected]',
license='MIT',
packages=['eventregistry'],
install_requires=[
'requests',
],
zip_safe=False)