-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
53 lines (48 loc) · 1.04 KB
/
setup.cfg
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
[metadata]
name = pytgasu
version = attr: pytgasu.__version__
description = Telegram sticker sets creation automated (partially).
long_description = file: README.rst
keywords = Telegram, stickers
url = https://github.com/alemonmk/pytgasu
author = Lemon Lam
author_email = [email protected]
license = GPLv3
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: End Users/Desktop
Topic :: Communications :: Chat
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
[options]
python_requires = >=3.5
install_requires =
setuptools>=30.3.0
Telethon==0.18.1.1
click
Pillow
tests_require =
nose
coverage
packages = find:
include_package_data = yes
zip_safe = yes
[options.packages.find]
exclude =
contrib
docs
tests
[options.extras_require]
test =
nose
coverage
[alias]
test = nosetests
[nosetests]
tests=pytgasu/tests
with-coverage=1
cover-erase=1
cover-branches=1
cover-html=1
cover-no-print=1