-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'setup.py' has been forgotted from previous release and still contained information. So it has been cleaned an 'setup.cfg' has been updated to include missing '[options.entry_points]' section.
- Loading branch information
Showing
3 changed files
with
18 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,5 @@ | ||
from setuptools import setup, find_packages | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup | ||
|
||
setup( | ||
name='boussole', | ||
version=__import__('boussole').__version__, | ||
description=__import__('boussole').__doc__, | ||
long_description=open('README.rst').read(), | ||
author='David Thenon', | ||
author_email='[email protected]', | ||
url='https://github.com/sveetch/boussole', | ||
license='MIT', | ||
packages=find_packages(exclude=['tests*']), | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3.5", | ||
"Topic :: Internet", | ||
"Topic :: Software Development :: Compilers", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
install_requires=[ | ||
'six', | ||
'click>=5.1,<6.0', | ||
'pathtools==0.1.2', | ||
'watchdog==0.8.3', | ||
'libsass>=0.14.5', | ||
'pyaml', | ||
'colorama', | ||
'colorlog', | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'boussole = boussole.cli.console_script:cli_frontend', | ||
] | ||
}, | ||
include_package_data=True, | ||
zip_safe=False | ||
) | ||
setup() |