-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (43 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
44
45
46
47
import os
from setuptools import (
setup,
find_packages
)
current_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_directory, 'README.md'), "r") as readme:
package_description = readme.read()
version_string = ""
with open (os.path.join(current_directory, ".version"), 'r') as version_file:
version_string = version_file.read()
setup(
name="dcrx",
version=version_string,
description="A library for typesafe, programmatic generation of Docker images via SQL-builder like API.",
long_description=package_description,
long_description_content_type="text/markdown",
author="Sean Corbett",
author_email="[email protected]",
url="https://github.com/scorbettUM/dcrx",
packages=find_packages(),
keywords=[
'pypi',
'cicd',
'python',
'setup',
'docker',
'infra',
'devops'
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=[
'pydantic'
],
python_requires='>=3.10'
)