-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 837 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 837 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
from setuptools import *
from msa.utils.config import Config
setup(
name='msa',
version=Config.version,
description='Maven settings administrator',
url='https://github.com/Gunmer/maven-setting-administrator.git',
author='Gunmer',
author_email='csosaur@gmail.com',
license='MIT',
zip_safe=False,
packages=find_packages(),
scripts=['bin/msa'],
entry_points={'console_scripts': ['src=msn.command_line:main']},
test_suite='test',
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
],
)