-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (32 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
from lmod import LMODULE_VERSION
setup(
name="lmodule",
version=LMODULE_VERSION,
author="Shahzeb Siddiqui",
author_email="[email protected]",
description="Lmod Module API",
long_description=open("README.rst").read(),
url="https://github.com/buildtesters/lmodule",
license="MIT",
python_requires=">=3.6, <4",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
packages=find_packages(),
include_package_data=True,
project_urls={
"Source Code": "https://github.com/buildtesters/lmodule",
"Documentation": "https://lmodule.readthedocs.io/",
"Bug Report": "https://github.com/buildtesters/lmodule/issues",
},
)