-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 972 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
from setuptools import setup
setup(
name='si-news',
version='0.1.3',
description='Tracks updates for zhurnal.lib.ru authors',
author='Denis Malinovsky',
author_email='dmalinovsky@gmail.com',
url='https://bitbucket.org/dmalinovsky/si-news/',
py_modules=['si_news'],
install_requires=['pyquery'],
license='gpl',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: Russian',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities',
],
entry_points = {
'gui_scripts': [
'si_news = si_news',
]
},
)