-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (53 loc) · 1.83 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
57
58
59
60
from setuptools import setup
setup(
name='globalmon', # Name of the package
version='0.1.0', # Version number
description='Global URL monitoring',
long_description=open('README.md').read(), # Description from README file
long_description_content_type='text/markdown',
url='https://github.com/stackmon/globalmon', # URL to your repository
author='Muneeb H. Jan',
author_email='[email protected]',
license='Apache License Version 2.0', # License type
# Keywords to indicate what your project is about
keywords='global URL monitoring endpoints',
test_suite='tests', # Tells setuptools where to find the tests
tests_require=[
# 'unittest',
'requests-mock',
], # Specify any test dependencies here
# Packages to include
package_dir={'': 'src'},
packages=[
'globalmon',
],
# Dependencies
install_requires=[
'PyYAML',
'requests',
'statsd',
# Add more dependencies as needed
],
# Entry points
entry_points={
'console_scripts': [
# Example command-line script
'globalmon = globalmon.server:main',
],
},
# Additional classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
# Add more classifiers as needed
],
)