Skip to content

Commit

Permalink
include classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
kif committed Dec 17, 2015
1 parent d5732ea commit 12a2518
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,23 @@ def run(self):

cmdclass['test'] = PyTest

classifiers = ["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Environment :: Console",
"Intented Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]


setup(name="freesas",
version=get_version(),
Expand All @@ -262,5 +279,6 @@ def run(self):
scripts=script_files,
install_requires=['numpy', "six"],
ext_modules=ext_modules,
cmdclass=cmdclass
cmdclass=cmdclass,
classifiers=classifiers
)

0 comments on commit 12a2518

Please sign in to comment.