forked from fa0311/twitter_openapi_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 882 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 882 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
27
28
29
30
# coding: utf-8
from setuptools import find_packages, setup
NAME = "twitter_openapi_python"
VERSION = "0.0.6"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"twitter_openapi_python_generated == 0.0.5",
"pydantic >= 1.10.5, < 2",
]
setup(
name=NAME,
version=VERSION,
description="Twitter OpenAPI",
author="fa0311",
url="https://github.com/fa0311/twitter_openapi_python",
keywords=["OpenAPI", "OpenAPI-Generator", "Twitter OpenAPI"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="proprietary or AGPL-3.0-or-later",
long_description_content_type="text/markdown",
long_description="""\
Twitter scraping with data validation by pydantic.
""", # noqa: E501
package_data={"twitter_openapi_python": ["py.typed"]},
)