-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 866 Bytes
/
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
from setuptools import setup
import codecs
# get description
with codecs.open("README.md", "r", "utf-8") as file:
long_description = file.read()
# setup
setup(
name="irods",
version="0.0.1",
description="Metapackage for irods",
long_description=long_description,
long_description_content_type='text/markdown',
author="iRODS Consortium",
author_email="support@irods.org",
install_requires=["python-irodsclient"],
license="BSD",
url="https://github.com/irods/irods_python_metapackage",
keywords="irods",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
)