forked from Mincka/DMArchiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (31 loc) · 1.14 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
import codecs
from setuptools import setup, find_packages
import dmarchiver
setup(
name='dmarchiver',
version=dmarchiver.__version__,
packages=find_packages(),
install_requires=['requests==2.25.1', 'lxml==4.6.2', 'cssselect==1.1.0', 'ratelimit'],
author="Julien EHRHART",
author_email="[email protected]",
description="A tool to archive the direct messages from your private conversations on Twitter.",
long_description=codecs.open('README.md', 'r', 'utf-8').read(),
include_package_data=True,
url='https://github.com/Mincka/DMArchiver',
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"License :: OSI Approved",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Topic :: System :: Archiving",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
'console_scripts': [
'dmarchiver = dmarchiver.cmdline:main',
],
},
license="GNU General Public License v3 (GPLv3)",
)