-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 679 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 679 Bytes
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 setuptools import setup, find_packages
version = '3.3'
setup(
name='SL-CLI',
version=version,
description='Command-line interface to APIs used by sl.se.',
author='Sebelino',
author_email='sebelino7@gmail.com',
url='https://github.com/Sebelino/SL-CLI',
download_url='https://github.com/Sebelino/SL-CLI/tarball/{}'.format(
version),
packages=find_packages(),
package_data={
'slcli.resources': [
'locations.xml',
],
},
entry_points={
'console_scripts': [
'sl-cli = slcli.sl_cli:main',
],
},
license='MIT',
install_requires=[
'xmltodict',
],
)