-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.8 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
from importlib.metadata import entry_points
from setuptools import setup, find_packages
VERSION = "0.4.2"
with open('README.md', 'rt') as file:
description = file.read()
setup(
name='runit-server',
version=VERSION,
author='Amos Amissah',
author_email='[email protected]',
description='Backend for python-runit',
long_description=description,
long_description_content_type = "text/markdown",
packages=find_packages(),
include_package_data=True,
install_requires=['requests','python-dotenv', 'runit-cli',
'odbms', 'fastapi', 'python-multipart',
'python-jose[cryptography]', 'passlib', 'docker',
'aiofiles', 'pydantic', 'pydantic[email]',
'jinja2', 'PyGithub', 'itsdangerous'],
keywords='python3 runit server backend developer serverless architecture docker',
project_urls={
'Source': 'https://github.com/theonlyamos/runit-server/',
'Tracker': 'https://github.com/theonlyamos/runit-server/issues',
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
entry_points={
'console_scripts': [
'runit-server=runit_server.cli:main',
],
}
)