-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (37 loc) · 1.42 KB
/
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
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
import os
from pip.req import parse_requirements
from setuptools import setup
install_reqs = parse_requirements(os.path.join(os.path.dirname(os.path.abspath(__file__)),
'requirements.txt'), session='None')
setup(
name='ororo2leo',
author='Sasha Khaerov',
version='0.0.1',
keywords='ororo.tv ororo lingualeo export import tool dictionary words',
packages=['ororo2leo'],
description='A command line tool for exporting ororo.tv dictionary to lingualeo',
url='https://github.com/hayorov/ororo2leo',
license='Apache Software License',
install_requires=[str(ir.req) for ir in install_reqs],
entry_points={
'console_scripts': [
'ororo2leo = ororo2leo.ororo2leo:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
],
)