this repo has no description
1from setuptools import setup
2import os
3
4VERSION = "0.21.3"
5
6
7def get_long_description():
8 with open(
9 os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
10 encoding="utf8",
11 ) as fp:
12 return fp.read()
13
14
15setup(
16 name="twitter-to-sqlite",
17 description="Save data from Twitter to a SQLite database",
18 long_description=get_long_description(),
19 long_description_content_type="text/markdown",
20 author="Simon Willison",
21 url="https://github.com/dogsheep/twitter-to-sqlite",
22 license="Apache License, Version 2.0",
23 version=VERSION,
24 packages=["twitter_to_sqlite"],
25 entry_points="""
26 [console_scripts]
27 twitter-to-sqlite=twitter_to_sqlite.cli:cli
28 """,
29 install_requires=[
30 "sqlite-utils>=2.4.2",
31 "requests-oauthlib~=1.2.0",
32 "python-dateutil",
33 ],
34 extras_require={"test": ["pytest"]},
35 tests_require=["twitter-to-sqlite[test]"],
36)