-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·55 lines (37 loc) · 1.33 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
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from os import path
from setuptools import setup, find_packages
root_path = path.abspath(path.dirname(__file__))
with open(path.join(root_path, 'requirements.txt')) as f:
requirements = f.read().splitlines()
with open(path.join(root_path, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Yatcobot',
version='2.3.6',
description='The best bot for searching twitter contests and automatically retweet them',
long_description=long_description, # Optional
url='https://github.com/buluba89/Yatcobot',
author='John Buluba',
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='twitter bot contest retweet',
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'utils']), # Required
package_data={ # Optional
'yatcobot.config': ['config_default.yaml'],
},
install_requires=requirements,
setup_requires=['pipenv'],
entry_points={ # Optional
'console_scripts': [
'yatcobot=yatcobot.cli:main',
],
},
project_urls={
'Source': 'https://github.com/buluba89/Yatcobot',
},
)