-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (39 loc) · 1.08 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
46
47
48
49
from setuptools import setup, find_packages
import sys
py3 = sys.version_info >= (3,0)
with open("README.md", "r") as fh:
long_description = fh.read()
if py3:
install_requires = [
'toml',
'docopt',
]
else:
install_requires = [
'toml',
'docopt',
'typing',
]
setup(
name='registries-conf-ctl',
version='1.0',
packages=find_packages(),
url='',
license='MIT',
author='Sebastian Wagner',
author_email='swagner@suse.com',
description='A CLI tool to modify /etc/registries/registries.conf',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_requires,
entry_points = {
'console_scripts': ['registries-conf-ctl=registries_conf_ctl.cli:main'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)