-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 752 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
with open("README.rst") as fh:
readme = fh.read()
setup(
name="galaxyxml",
version="0.5.5",
description="Galaxy XML generation library",
author="Helena Rasche",
author_email="hexylena@galaxians.org",
install_requires=["lxml", "galaxy-tool-util"],
long_description=readme,
long_description_content_type="text/x-rst",
packages=["galaxyxml", "galaxyxml.tool", "galaxyxml.tool.parameters"],
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
],
data_files=[("", ["LICENSE.TXT"])],
)