forked from DocNow/twarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 829 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
# Also in twarc.py
__version__ = '1.2.0'
if sys.version_info[0] < 3:
dependencies = open(join('requirements', 'python2.txt')).read().split()
else:
dependencies = open(join('requirements', 'python3.txt')).read().split()
if os.name == "nt":
scripts = ['twarc.py']
else:
scripts = ['bin/twarc']
if __name__ == "__main__":
setup(
name='twarc',
version=__version__,
url='https://github.com/docnow/twarc',
author='Ed Summers',
author_email='[email protected]',
py_modules=['twarc', ],
scripts=scripts,
description='Archive tweets from the command line',
install_requires=dependencies,
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)