-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (45 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='zhaostephen-vdts',
version='0.1.0',
description='A library and CLI for checking and reporting that time series data occurs at regular intervals.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Stephen Zhao',
author_email='mail@zhaostephen.com',
url='https://github.com/stephen-zhao/vdts',
project_urls={
"Source": "https://github.com/stephen-zhao/vdts",
},
license='MIT',
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
keywords=[
],
package_dir={'': 'src'},
packages=setuptools.find_namespace_packages(
where='src',
include=['zhaostephen.*'],
),
entry_points={
"console_scripts": [
"vdts=zhaostephen.vdts._internal.cli.main:main",
]
},
python_requires='>=3.6',
install_requires=[
'datetime-matcher',
],
)