-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 926 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
30
31
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='Monitor',
version='1.0',
description='File monitoring module to convert raw data files',
author='Diego Pedrosa',
author_email='[email protected]',
url='https://github.com/metabolomics-us/monitor',
license='GPLv3',
packages=find_packages(exclude=("tests",)),
data_files=[('config', ['appconfig.yml'])],
install_requires=[
'requests',
'simplejson',
'yamlconf',
'watchdog',
'boto3',
'botocore',
'pywin32',
'retry',
'watchtower',
],
include_package_data=True,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
])