forked from fitnr/everylotbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 712 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 712 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of everylotbot
from setuptools import setup
with open('everylot/__init__.py') as i:
version = next(r for r in i.readlines() if '__version__' in r).split('=')[1].strip('"\' \n')
setup(
name='everylot',
version=version,
description='everylot',
long_description='''every lot''',
keywords='',
author='fitnr',
author_email='fitnr@fakeisthenewreal',
packages=['everylot'],
license='GPL-3.0',
include_package_data=False,
install_requires=[
'twitter_bot_utils>=0.11.5,<=0.12',
],
entry_points={
'console_scripts': [
'everylot=everylot.bot:main',
],
},
)