-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (29 loc) · 969 Bytes
/
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
from distutils.core import setup
setup(
name = 'telecheck',
packages = ['telecheck'],
version = '0.1',
description = 'Telegram ID Recommender',
long_description='''Telegram ID Recommender''',
author = 'Sepand Haghighi',
author_email = 'sepand@qpage.ir',
url = 'https://github.com/sepandhaghighi/telecheck',
download_url = 'https://github.com/sepandhaghighi/telecheck/tarball/v0.1',
keywords = ["Telegram","python","ID","Username","User","Recommender","Generator"],
install_requires=[
'art',
'codecov',
'requests',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
],
license='MIT',
)