-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
25 lines (22 loc) · 821 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
from setuptools import setup, find_packages
setup(
name="tootstream",
version="0.5.0",
python_requires=">=3",
install_requires=[line.strip() for line in open('requirements.txt')],
packages=find_packages('src'),
package_dir={'': 'src'}, include_package_data=True,
package_data={
},
author="Sara Murray",
author_email="[email protected]",
description="A command line interface for interacting with Mastodon instances", # nopep8
long_description="A command line interface for interacting with Mastodon instances", # nopep8
license="MIT",
keywords="mastodon, mastodon.social, toot, tootstream",
url="http://www.github.com/magicalraccoon/tootstream",
entry_points={
'console_scripts':
['tootstream=tootstream.toot:main']
}
)