-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 781 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 781 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="PyCrowdTangle",
packages = find_packages(include=['PyCrowdTangle']),
version="0.5.0",
author="Jose R. Zapata",
author_email="jjrzg@hotmail.com",
description="A Python Wrapper To Retrieve Data From The CrowdTangle API",
license='MIT',
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/UPB-SS1/PyCrowdTangle",
install_requires=['requests'],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
],
keywords=['crowdtangle', 'wrapper-api'],
)