forked from buckket/twtxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (41 loc) · 1.29 KB
/
setup.py
File metadata and controls
54 lines (41 loc) · 1.29 KB
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
54
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 4, 1):
raise RuntimeError("twtxt requires Python 3.4.1+")
setup(
name='twtxt',
version='1.1.0',
url='https://github.com/buckket/twtxt',
author='buckket',
author_email='buckket@cock.li',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'aiohttp',
'python-dateutil',
'humanize',
'click',
],
entry_points={
'console_scripts': ['twtxt=twtxt.cli:main']
},
description='Decentralised, minimalist microblogging service for hackers.',
long_description=open('./README.rst', 'r').read(),
keywords=['microblogging', 'twitter', 'twtxt'],
license='MIT',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: End Users/Desktop',
'Topic :: Communications',
'Topic :: Utilities',
],
)