-
Notifications
You must be signed in to change notification settings - Fork 16
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 #252 from tcmitchell/author
Update setup.py
- Loading branch information
Showing
1 changed file
with
10 additions
and
5 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 |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
description='Python implementation of SBOL 3 standard', | ||
python_requires='>=3.7', | ||
url='https://github.com/SynBioDex/pySBOL3', | ||
author='Bryan Bartley', | ||
author_email='[email protected]', | ||
license='Apache-2', | ||
author='Tom Mitchell', | ||
author_email='[email protected]', | ||
license='MIT License', | ||
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
# How mature is this project? Common values are | ||
|
@@ -20,11 +20,16 @@ | |
'Intended Audience :: Developers', | ||
|
||
# Pick your license as you wish (should match "license" above) | ||
'License :: OSI Approved :: Apache Software License', | ||
'License :: OSI Approved :: MIT License', | ||
|
||
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate whether you support Python 2, Python 3 or both. | ||
'Programming Language :: Python :: 3' | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
|
||
], | ||
# What does your project relate to? | ||
keywords='synthetic biology', | ||
|