-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (41 loc) · 1.26 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
50
51
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': "Get Debian packaging information of dependencies of a \
Ruby application/library",
'author': 'Balasankar C',
'url': 'https://gitlab.com/balasankarc/gemdeps',
'download_url': 'https://gitlab.com/balasankarc/gemdeps',
'author_email': '[email protected]',
'version': '1.0.0',
'license': 'GPL-3+',
'long_description': '''
Installation
~~~~~~~~~~~~
::
git clone https://github.com/balasankarc/gemdeps.git
cd gemdeps
python setup.py install
Copyright
~~~~~~~~~
2015 Balasankar C [email protected]
License
~~~~~~~
gemdeps is released under `GNU GPL version 3 (or above) License`_.
.. _GNU GPL version 3 (or above) License: http://www.gnu.org/licenses/gpl
''',
'packages': ['gemdeps'],
'scripts': ['bin/gemdeps'],
'name': 'gemdeps'
}
setup(
classifiers=[
# Indicate who your project is intended for
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
], **config)