-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (29 loc) · 930 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
30
31
32
33
34
35
import os
from setuptools import setup, find_packages
def readme():
return open('README.rst').read() if os.path.exists('README.rst') else '<README IS MISSING>'
def license():
return open('LICENSE').read() if os.path.exists('LICENSE') else 'MIT'
setup(
name='steepshot-telegram',
version='0.0.1',
description='Telegram-bot for Steepshot',
long_description=readme(),
url='https://github.com/Chainers/steepshot-telegram',
author='steepshot',
author_email='[email protected]',
keywords='blockchain steepshot steem photo',
license=license(),
packages=find_packages(),
zip_safe=False,
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5'
],
entry_points={
'console_scripts': [
'steepshotbot=steepshot_bot.main:main',
]
}
)