-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (20 loc) · 1.02 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
"""
This setup.py allows your python package to be installed.
Please completely update the parameters in the opts dictionary.
For more information, see https://stackoverflow.com/questions/1471994/what-is-setup-py
"""
from setuptools import setup, find_packages
PACKAGES = find_packages()
opts = dict(name='new_hire',
maintainer='Chilliwack',
maintainer_email='[email protected]',
description='new_hire is a script and set of functions that intergrates with the Hutchs Toolbox system',
long_description=("""new_hire is a script and set of functions that intergrates with the Hutchs Toolbox system to make it easier to identify new users."""),
url='https://github.com/FredHutch/new_data_employee',
license='MIT', # default license, change here and in the git repo if using a different license
author='Chilliwack',
author_email='[email protected]',
version='0.1',
packages=PACKAGES
)
setup(**opts)