Skip to content

Instantly share code, notes, and snippets.

@adelq
Created May 15, 2016 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adelq/b313be487739ba07d96f6141b0125a08 to your computer and use it in GitHub Desktop.
Save adelq/b313be487739ba07d96f6141b0125a08 to your computer and use it in GitHub Desktop.
from setuptools import setup
package = 'mymodule'
version = '1.0'
setup(
name=package,
version=version,
description="Description",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment