-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
53 lines (46 loc) · 1.33 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools.command.install import install
from setuptools import setup, find_packages
from codecs import open
import os
import json
import shutil
from dotenv import load_dotenv
load_dotenv()
curr = os.path.abspath(os.path.dirname(__file__))
home = os.path.expanduser("~")
with open(os.path.join(curr, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='twweet_cli',
version='2.1.0',
description='Tweet right from your cli without even opening your browser.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/CruiseDevice/twweet-cli/',
author='Akash Chavan',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.6',
keywords='twitter tweet cli',
packages=find_packages(),
install_requires=[
'tweepy',
'pyyaml',
'python-dotenv',
],
entry_points={
'console_scripts': [
'twweet-cli = twweet_cli.main:cli',
],
},
)