-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.7.1 - Tale of the disappearing setup file
- Loading branch information
1 parent
4400d74
commit 5b62f73
Showing
2 changed files
with
45 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# -*- coding: utf-8 -*- | ||
|
||
__title__ = 'ares' | ||
__version__ = '0.7.0' | ||
__version__ = '0.7.1' | ||
__author__ = 'Martin Simon <[email protected]>' | ||
__repo__ = 'https://github.com/barnumbirr/ares' | ||
__license__ = 'Apache v2.0 License' | ||
|
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
# To use a consistent encoding | ||
from os import path | ||
from codecs import open | ||
# Always prefer setuptools over distutils | ||
try: | ||
from setuptools import setup | ||
except ImportError: | ||
from distutils.core import setup | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='ares', | ||
packages = ['ares'], | ||
version = '0.7.1', | ||
description = 'Python wrapper around https://cve.circl.lu.', | ||
author = 'Martin Simon', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/barnumbirr/ares', | ||
project_urls={ | ||
'Bug Reports': 'https://github.com/barnumbirr/ares/issues', | ||
'Buy me a coffee': 'https://github.com/barnumbirr/ares#buy-me-a-coffee', | ||
}, | ||
license = 'Apache v2.0 License', | ||
keywords=['CVE', 'cybersecurity', 'vulnerability', 'circl.lu'], | ||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
long_description = long_description, | ||
long_description_content_type='text/markdown', | ||
) |