-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (41 loc) · 1.15 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
import os
from setuptools import find_packages, setup
NAME = 'flforward'
DESCRIPTION = 'Forward messages from vk group to tg channel.'
URL = 'https://github.com/kiddick/flforward'
EMAIL = '[email protected]'
AUTHOR = 'Me'
REQUIRES_PYTHON = '>=3.7.2'
VERSION = '0.1'
# TODO
REQUIRED = [
# 'requests', 'maya', 'records',
]
EXTRAS = {}
here = os.path.abspath(os.path.dirname(__file__))
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages('.'),
entry_points={
'console_scripts': ['forward=forward.forward:run'],
},
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
)
# pip install -e . from project root