-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (20 loc) · 912 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
from distutils.core import setup
# This script defines the installation and packaging properties for the python packages
# included in this repository
setup(
name='templateServices',
version='0.1',
include_package_data=True,
package_data={ 'schema_definitions' : ['*.xlsx'] },
packages=['config', 'template','schema_definitions'],
entry_points={
"console_scripts": ['gwas-spreadsheet_builder = template.spreadsheet_builder:main',
'gwas-JSON_schema_builder = template.schemaJson_builder:main',
'gwas_schema_loader = schema_definitions.schemaLoader:main']
},
url='https://github.com/EBISPOT/gwas-template-services',
license='',
author='Daniel Suveges',
author_email='[email protected]',
description='Package to manage template related services for the data deposition system of the GWAS Catalog',
)