-
Notifications
You must be signed in to change notification settings - Fork 2
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 #76 from QuMuLab/dev
official release info
- Loading branch information
Showing
2 changed files
with
77 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
|
||
import io | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
|
@@ -18,38 +17,40 @@ | |
} | ||
|
||
CLASSIFIERS = [ | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3 :: Only", | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Mathematics', | ||
'Development Status :: 4 - Beta', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3 :: Only', | ||
] | ||
|
||
with io.open('LICENSE', 'r', encoding='utf-8') as f: | ||
with open('LICENSE', 'r', encoding='utf-8') as f: | ||
LICENSE = f.read() | ||
|
||
with open("README.md") as f: | ||
with open('README.md', 'r', encoding='utf-8') as f: | ||
LONG_DESCRIPTION = f.read() | ||
|
||
LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown" | ||
|
||
setup( | ||
name=NAME, | ||
version=VERSION, | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE, | ||
classifiers=CLASSIFIERS, | ||
author='Karishma Daga, Christian Muise', | ||
author_email='[email protected], [email protected]', | ||
license=LICENSE, | ||
license="MIT", | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/markdown', | ||
project_urls={ | ||
'Documentation': "https://bauhaus.readthedocs.io/", | ||
'Source': "https://github.com/QuMuLab/bauhaus", | ||
}, | ||
python_requires='>=3.4', | ||
install_requires=DEPENDENCIES, | ||
extras_require=EXTRAS, | ||
|