-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from jzuhone/version
Remove version from setup.py
- Loading branch information
Showing
1 changed file
with
0 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup | ||
from psmc_check import __version__ | ||
|
||
entry_points = {'console_scripts': 'psmc_check = psmc_check.psmc_check:main'} | ||
|
||
url = 'https://github.com/acisops/psmc_check/tarball/{}'.format(__version__) | ||
|
||
setup(name='psmc_check', | ||
packages=["psmc_check"], | ||
use_scm_version=True, | ||
|
@@ -14,13 +11,6 @@ | |
author='John ZuHone', | ||
author_email='[email protected]', | ||
url='http://github.com/acisops/psmc_check', | ||
download_url=url, | ||
include_package_data=True, | ||
classifiers=[ | ||
'Intended Audience :: Science/Research', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
], | ||
entry_points=entry_points, | ||
) |