forked from ChrisStevens/garc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 950 Bytes
/
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
import sys
import os
from os.path import join
from setuptools import setup
__version__ = '2.0'
with open("README.md") as f:
long_description = f.read()
if sys.version_info[0] < 3:
dependencies = open(join('requirements', 'python2.txt')).read().split()
else:
dependencies = open(join('requirements', 'python3.txt')).read().split()
if __name__ == "__main__":
setup(
name='garc',
version=__version__,
url='https://github.com/ChrisStevens/garc',
author='Chris Stevens',
author_email='[email protected]',
packages=['garc',],
description='Archive Gab.ai posts from the command line',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=dependencies,
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={'console_scripts': ['garc = garc:main']}
)