-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.25 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
# ----------------------------------------------------------------------------
# Copyright (c) 2024, Amanda Birmingham.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
import versioneer
from setuptools import setup, find_packages
setup(name='qiimp',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description="QIIMP: Quick and Intuitive Interactive Metadata "
"Preparation, a tool for generating and validating "
"Qiita-compliant metadata files.",
license='BSD-3-Clause',
description='Qiita-compliant metadata generation and validation tool',
author="Amanda Birmingham",
author_email="[email protected]",
url='https://github.com/AmandaBirmingham/qiimp2',
packages=find_packages(),
include_package_data=True,
# TODO: if need to deploy non-code files, add back and tweak
# package_data={
# 'qiimp': [
# '*.*',
# 'data/*.*']
# },
entry_points={
'console_scripts': ['qiimp=qiimp.src.__main__:root']}
)