-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 881 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 881 Bytes
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
from os import path
from setuptools import setup
with open(path.join(path.dirname(path.abspath(__file__)), 'README.rst')) as f:
readme = f.read()
setup(
name = 'timestampmaker',
version = '0.1.0',
description = 'Create timestamps for the ChRIS project(s).',
long_description = readme,
author = 'barbacbd',
author_email = 'bbarbach@redhat.com',
url = 'https://github.com/rh-impact/pl-timestampmaker',
packages = ['timestampmaker'],
install_requires = ['chrisapp'],
test_suite = 'nose.collector',
tests_require = ['nose', 'mock'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.6',
entry_points = {
'console_scripts': [
'timestampmaker = timestampmaker.__main__:main'
]
}
)