-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
40 lines (36 loc) · 1.37 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
33
34
35
36
37
38
39
40
import os
from setuptools import setup
os.chdir(os.path.abspath(os.path.dirname(__file__)))
req = [
'prometheus_client',
'datamart-core',
]
setup(name='datamart-cache-cleaner-service',
version='0.0',
packages=['cache_cleaner'],
entry_points={
'console_scripts': [
'cache_cleaner = cache_cleaner.cache:main']},
install_requires=req,
description="Cache Cleaner service for Auctus",
author="Remi Rampin",
author_email='[email protected]',
maintainer="Remi Rampin",
maintainer_email='[email protected]',
url='https://gitlab.com/ViDA-NYU/auctus/auctus',
project_urls={
'Homepage': 'https://gitlab.com/ViDA-NYU/auctus/auctus',
'Source': 'https://gitlab.com/ViDA-NYU/auctus/auctus',
'Tracker': 'https://gitlab.com/ViDA-NYU/auctus/auctus/-/issues',
},
long_description="Cache Cleaner service for Auctus",
license='Apache-2.0',
keywords=['auctus', 'datamart'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis'])