forked from notification-bot/Python-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.04 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.04 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
from setuptools import setup
requirements = [
# TODO: put package requirements here
'requests'
]
test_requirements = [
# TODO: put package test requirements here
'requests',
'datetime'
]
setup(
name='Python-bot',
version='0.1.0',
description='Bot to notify you about plans via VK',
long_description="readme + '\n\n' + history",
author="Sergey Sablin",
author_email='serewkasablin@outlook.com',
url='https://github.com/notification-bot/Python-bot',
packages=[
'Python-bot',
],
package_dir={'Python-bot':
'Python-bot'},
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='Python-bot',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
],
test_suite='tests',
tests_require=test_requirements
)