forked from xacnio/tweetcapture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.11 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
32
33
34
35
36
37
38
39
import setuptools
# Long description
with open('README.md', 'r') as fh:
long_description = fh.read()
# Requirements
def get_requirements():
with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()
return requirements
setuptools.setup(
name="tweet-capture",
version="0.2.5",
author="Alperen Çetin",
author_email="[email protected]",
description="Take a tweet screenshot",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Xacnio/tweetcapture",
packages=setuptools.find_packages(),
install_requires=get_requirements(),
data_files=[("", ["requirements.txt"])],
entry_points={
"console_scripts": ["tweetcapture=tweetcapture.cli:main"]},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license='MIT',
keywords="tweet screenshot",
python_requires=">=3.6"
)