Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dogoncouch committed Mar 29, 2018
1 parent 9285764 commit 9f64ab2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
from setuptools import setup
from os.path import join
from sys import prefix
from LicIns import __version__
from licins import __version__

ourdata = [(join(prefix, 'share/man/man1'), ['doc/licins.1']),
(join(prefix, 'share/doc/licins'), ['README.md', 'LICENSE',
Expand All @@ -107,8 +107,8 @@
url = 'https://github.com/dogoncouch/licins',
download_url = 'https://github.com/dogoncouch/licins/' + \
'archive/v' + str(__version__) + '.tar.gz',
packages = [ 'LicIns', 'LicIns.licenses' ],
entry_points = { 'console_scripts': [ 'licins = LicIns.core:main' ] },
packages = [ 'licins', 'licins.licenses' ],
entry_points = { 'console_scripts': [ 'licins = licins.core:main' ] },
data_files = ourdata,
keywords = ['development', 'developer-tools', 'cli', 'license',
'license-management', 'licenses', 'open-source',
Expand Down

0 comments on commit 9f64ab2

Please sign in to comment.