-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·42 lines (39 loc) · 1.11 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
#!/usr/bin/python3
import os, sys
from distutils.core import setup
from setuptools import setup, find_packages
with open('README.md', 'r', encoding="utf-8") as content_file:
long_description = content_file.read()
setup(
name="todoBot",
version="0.3",
packages=find_packages(),
install_requires=[
'setuptools',
'config',
'py',
'pytest',
'requests',
'six',
'wheel'
],
package_data={
'dacs': ['*.txt', '*.rst'],
},
scripts=["bin/todoBot", "bin/set-todoBot"],
author="Ruslan Yakushev",
author_email="yakushev.rusl101@gmail.com",
description="Task manager telegram bot",
long_description = long_description,
url="https://github.com/lrusifikator/todoBot",
license="MIT",
project_urls={
"Source Code": "https://github.com/lrusifikator/todoBot",
"Documentation": "https://github.com/lrusifikator/todoBot/docs",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)