-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (36 loc) · 1.3 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
41
42
43
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
# Semantic Versioning 2.0.0
#
# MAJOR version for incompatible API changes
# MINOR version for added functionality in a backwards compatible manner
# PATCH version for backwards compatible bug fixes
setup(
name = 'renumSeq',
version = '2.0.0',
description='Tool to renumber image sequences.',
long_description=long_description,
long_description_content_type='text/markdown',
url = 'https://github.com/jrowellfx/renumSeq',
author = 'James Philip Rowell',
author_email = '[email protected]',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Development Status :: 5 - Production/Stable',
],
packages = ['renumseq'],
python_requires = '>=3.7, <4',
install_requires=['seqLister>=1.2.0', 'lsseq>=4.0.0'],
entry_points = {
'console_scripts': [
'renumseq = renumseq.__main__:main',
]
}
)