-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.17 KB
/
setup.py
File metadata and controls
45 lines (41 loc) · 1.17 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
42
43
44
45
import os
from setuptools import setup
from pygram import __version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
LONG_DESCRIPTION = readme.read()
setup(
name='pygram',
version=__version__,
packages=['pygram'],
package_data={
'.': [
'*.pub',
]},
include_package_data=True,
url='https://github.com/RedXBeard/pygram',
license='MIT',
author='Barbaros Yildirim',
author_email='barbarosaliyildirim@gmail.com',
description='Telegram messaging from your terminal.',
long_description=LONG_DESCRIPTION,
entry_points={
'console_scripts': [
'pygram = pygram.command:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications :: Chat'
],
install_requires=[
'npyscreen',
'DictObject',
'pytg'
]
)